- create a very basic OP_IJMP implementation
This commit is contained in:
parent
61735ddd8b
commit
ad260aa971
2 changed files with 21 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue