diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-07 04:21:27 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-11 06:40:12 +0800 |
commit | 148f9233516ff5ad94d81aba9bc9c0440d3afc7b (patch) | |
tree | ea5c67aba40a944e9236be845cf3bd29e55b669c /libevmasm/Instruction.cpp | |
parent | 14ded4963d2b42443c6ddce8ad7550393ab58983 (diff) | |
download | dexon-solidity-148f9233516ff5ad94d81aba9bc9c0440d3afc7b.tar.gz dexon-solidity-148f9233516ff5ad94d81aba9bc9c0440d3afc7b.tar.zst dexon-solidity-148f9233516ff5ad94d81aba9bc9c0440d3afc7b.zip |
Add REVERT to libevmasm
Diffstat (limited to 'libevmasm/Instruction.cpp')
-rw-r--r-- | libevmasm/Instruction.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libevmasm/Instruction.cpp b/libevmasm/Instruction.cpp index f9ee9be1..de6630f3 100644 --- a/libevmasm/Instruction.cpp +++ b/libevmasm/Instruction.cpp @@ -159,6 +159,7 @@ const std::map<std::string, Instruction> dev::solidity::c_instructions = { "CALLCODE", Instruction::CALLCODE }, { "RETURN", Instruction::RETURN }, { "DELEGATECALL", Instruction::DELEGATECALL }, + { "REVERT", Instruction::REVERT }, { "INVALID", Instruction::INVALID }, { "SELFDESTRUCT", Instruction::SELFDESTRUCT } }; @@ -294,6 +295,7 @@ static const std::map<Instruction, InstructionInfo> c_instructionInfo = { Instruction::CALLCODE, { "CALLCODE", 0, 7, 1, true, Tier::Special } }, { Instruction::RETURN, { "RETURN", 0, 2, 0, true, Tier::Zero } }, { Instruction::DELEGATECALL, { "DELEGATECALL", 0, 6, 1, true, Tier::Special } }, + { Instruction::REVERT, { "REVERT", 0, 2, 0, true, Tier::Zero } }, { Instruction::INVALID, { "INVALID", 0, 0, 0, true, Tier::Zero } }, { Instruction::SELFDESTRUCT, { "SELFDESTRUCT", 0, 1, 0, true, Tier::Zero } } }; |