Browse Source

Remove old FIXME comment.

cl-refactor
Paweł Bylica 10 years ago
parent
commit
7527a684f9
  1. 2
      libevm/SmartVM.cpp

2
libevm/SmartVM.cpp

@ -117,7 +117,7 @@ bytesConstRef SmartVM::execImpl(u256& io_gas, ExtVMFace& _ext, OnOpFunc const& _
auto vmKind = VMKind::Interpreter; // default VM
// Jitted EVM code already in memory?
if (evmjit::JIT::isCodeReady(eth2jit(codeHash))) // FIXME: JIT::isCodeReady is not thread-safe
if (evmjit::JIT::isCodeReady(eth2jit(codeHash)))
{
clog(JitInfo) << "JIT: " << codeHash;
vmKind = VMKind::JIT;

Loading…
Cancel
Save