diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-09 15:42:54 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-02-27 20:42:41 +0800 |
commit | afa4a48e3770630a744ef98ccd518601e1f35c86 (patch) | |
tree | fdcf6a0b114a6630f8527992a1ff07ab85e593ed /docs | |
parent | 468d0f6199e71f0c7f4b8bd667c8f31feba41a9d (diff) | |
download | dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar.gz dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.tar.zst dexon-solidity-afa4a48e3770630a744ef98ccd518601e1f35c86.zip |
Remove ROL/ROR as they are not part of EIP145 anymore
Diffstat (limited to 'docs')
-rw-r--r-- | docs/assembly.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/assembly.rst b/docs/assembly.rst index 245b5383..9eabc99e 100644 --- a/docs/assembly.rst +++ b/docs/assembly.rst @@ -212,10 +212,6 @@ In the grammar, opcodes are represented as pre-defined identifiers. +-------------------------+-----+---+-----------------------------------------------------------------+ | sar(x, y) | | C | arithmetic shift right x by y bits | +-------------------------+-----+---+-----------------------------------------------------------------+ -| ror(x, y) | | C | rotate right x by y bits | -+-------------------------+-----+---+-----------------------------------------------------------------+ -| rol(x, y) | | C | rotate left x by y bits | -+-------------------------+-----+---+-----------------------------------------------------------------+ | addmod(x, y, m) | | F | (x + y) % m with arbitrary precision arithmetics | +-------------------------+-----+---+-----------------------------------------------------------------+ | mulmod(x, y, m) | | F | (x * y) % m with arbitrary precision arithmetics | |