Try not to use JIT in any interactive mode

This commit is contained in:
Paweł Bylica 2014-10-22 17:27:27 +02:00
parent 48108f5433
commit 16de530331

View file

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