mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Review changes.
This commit is contained in:
@@ -132,7 +132,7 @@ u256 EVMInstructionInterpreter::eval(
|
||||
case Instruction::SLT:
|
||||
return u2s(arg[0]) < u2s(arg[1]) ? 1 : 0;
|
||||
case Instruction::SGT:
|
||||
return u2s(arg[0]) < u2s(arg[1]) ? 1 : 0;
|
||||
return u2s(arg[0]) > u2s(arg[1]) ? 1 : 0;
|
||||
case Instruction::EQ:
|
||||
return arg[0] == arg[1] ? 1 : 0;
|
||||
case Instruction::ISZERO:
|
||||
|
||||
Reference in New Issue
Block a user