Implement VMFace with jit::VM

This commit is contained in:
Paweł Bylica 2014-10-22 16:40:05 +02:00
parent d6ec0a1248
commit 44536d4327

2
vm.cpp
View File

@ -524,7 +524,7 @@ void doTests(json_spirit::mValue& v, bool _fillin)
try try
{ {
if (useJit) if (useJit)
output = jit.go(fev); output = jit.go(fev).toVector();
else else
output = interpreter.go(fev).toVector(); output = interpreter.go(fev).toVector();
} }