mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 19:42:50 -06:00
bugfix in the RET instruction
This commit is contained in:
@@ -1089,7 +1089,7 @@ pgf_jit_function(PgfReader* rdr, PgfAbstr* abstr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (b-(a+1) > 0)
|
if (b-(a+1) > 0)
|
||||||
jit_subi_p(JIT_SP, JIT_SP, (b-(a+1))*sizeof(PgfClosure*));
|
jit_addi_p(JIT_SP, JIT_SP, (b-(a+1))*sizeof(PgfClosure*));
|
||||||
jit_bare_ret(a*sizeof(PgfClosure*));
|
jit_bare_ret(a*sizeof(PgfClosure*));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user