@@ -159,6 +159,7 @@ const std::map<std::string, Instruction> dev::solidity::c_instructions =
159
159
{ " CALLCODE" , Instruction::CALLCODE },
160
160
{ " RETURN" , Instruction::RETURN },
161
161
{ " DELEGATECALL" , Instruction::DELEGATECALL },
162
+ { " REVERT" , Instruction::REVERT },
162
163
{ " INVALID" , Instruction::INVALID },
163
164
{ " SELFDESTRUCT" , Instruction::SELFDESTRUCT }
164
165
};
@@ -294,6 +295,7 @@ static const std::map<Instruction, InstructionInfo> c_instructionInfo =
294
295
{ Instruction::CALLCODE, { " CALLCODE" , 0 , 7 , 1 , true , Tier::Special } },
295
296
{ Instruction::RETURN, { " RETURN" , 0 , 2 , 0 , true , Tier::Zero } },
296
297
{ Instruction::DELEGATECALL, { " DELEGATECALL" , 0 , 6 , 1 , true , Tier::Special } },
298
+ { Instruction::REVERT, { " REVERT" , 0 , 2 , 0 , true , Tier::Zero } },
297
299
{ Instruction::INVALID, { " INVALID" , 0 , 0 , 0 , true , Tier::Zero } },
298
300
{ Instruction::SELFDESTRUCT, { " SELFDESTRUCT" , 0 , 1 , 0 , true , Tier::Zero } }
299
301
};
0 commit comments