Browse Source

Fix SHA3 instruction :)

cl-refactor
Paweł Bylica 10 years ago
parent
commit
c7eac0d23c
  1. 1
      libevmjit/Compiler.cpp

1
libevmjit/Compiler.cpp

@ -473,6 +473,7 @@ void Compiler::compileBasicBlock(BasicBlock& basicBlock, bytesConstRef bytecode,
memory.require(inOff, inSize); memory.require(inOff, inSize);
auto hash = ext.sha3(inOff, inSize); auto hash = ext.sha3(inOff, inSize);
stack.push(hash); stack.push(hash);
break;
} }
case Instruction::POP: case Instruction::POP:

Loading…
Cancel
Save