- create a very basic OP_IJMP implementation

This commit is contained in:
Magnus Norddahl 2018-09-17 21:52:21 +02:00
commit ad260aa971
2 changed files with 21 additions and 6 deletions

View file

@ -144,11 +144,6 @@ bool JitCompiler::CanJit(VMScriptFunction *sfunc)
int size = sfunc->CodeSize;
for (int i = 0; i < size; i++)
{
// Functions not implemented at all yet:
if (sfunc->Code[i].op == OP_IJMP)
return false;
// Partially implemented functions:
auto pc = sfunc->Code + i;