Browse Source

Better assert condition

cl-refactor
Paweł Bylica 10 years ago
parent
commit
dcb739e445
  1. 2
      libevmjit/VM.cpp

2
libevmjit/VM.cpp

@ -15,7 +15,7 @@ namespace jit
bytesConstRef VM::go(ExtVMFace& _ext, OnOpFunc const& _onOp, uint64_t _steps)
{
assert(_onOp == nullptr); // Parameter ignored
assert(!_onOp); // Parameter ignored
assert(_steps == (uint64_t)-1); // Parameter ignored
auto module = Compiler().compile(_ext.code);

Loading…
Cancel
Save