mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
POP is actually a valid instruction.
This commit is contained in:
parent
0e471ab811
commit
d564c24f30
@ -353,10 +353,11 @@ u256 EVMInstructionInterpreter::eval(
|
||||
case Instruction::SELFDESTRUCT:
|
||||
logTrace(_instruction, arg);
|
||||
throw InterpreterTerminated();
|
||||
case Instruction::POP:
|
||||
break;
|
||||
// --------------- invalid in strict assembly ---------------
|
||||
case Instruction::JUMP:
|
||||
case Instruction::JUMPI:
|
||||
case Instruction::POP:
|
||||
case Instruction::JUMPDEST:
|
||||
case Instruction::PUSH1:
|
||||
case Instruction::PUSH2:
|
||||
|
Loading…
Reference in New Issue
Block a user