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 /libevmasm/Instruction.cpp | |
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 'libevmasm/Instruction.cpp')
-rw-r--r-- | libevmasm/Instruction.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libevmasm/Instruction.cpp b/libevmasm/Instruction.cpp index c25c9653..a677a631 100644 --- a/libevmasm/Instruction.cpp +++ b/libevmasm/Instruction.cpp @@ -53,8 +53,6 @@ const std::map<std::string, Instruction> dev::solidity::c_instructions = { "SHL", Instruction::SHL }, { "SHR", Instruction::SHR }, { "SAR", Instruction::SAR }, - { "ROL", Instruction::ROL }, - { "ROR", Instruction::ROR }, { "ADDMOD", Instruction::ADDMOD }, { "MULMOD", Instruction::MULMOD }, { "SIGNEXTEND", Instruction::SIGNEXTEND }, @@ -198,8 +196,6 @@ static const std::map<Instruction, InstructionInfo> c_instructionInfo = { Instruction::SHL, { "SHL", 0, 2, 1, false, Tier::VeryLow } }, { Instruction::SHR, { "SHR", 0, 2, 1, false, Tier::VeryLow } }, { Instruction::SAR, { "SAR", 0, 2, 1, false, Tier::VeryLow } }, - { Instruction::ROL, { "ROL", 0, 2, 1, false, Tier::VeryLow } }, - { Instruction::ROR, { "ROR", 0, 2, 1, false, Tier::VeryLow } }, { Instruction::ADDMOD, { "ADDMOD", 0, 3, 1, false, Tier::Mid } }, { Instruction::MULMOD, { "MULMOD", 0, 3, 1, false, Tier::Mid } }, { Instruction::SIGNEXTEND, { "SIGNEXTEND", 0, 2, 1, false, Tier::Low } }, |