From: Aleksey Demakov Date: Fri, 28 Dec 2007 19:53:36 +0000 (+0000) Subject: fix interpreter JIT_OP_LCMP_UN opcode X-Git-Tag: before.move.to.git~122 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=bd92c0b19bdc78ea9e76938c0afa0081decd2f46;p=francis%2Flibjit.git fix interpreter JIT_OP_LCMP_UN opcode --- diff --git a/ChangeLog b/ChangeLog index 99a7828..9f84d61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-12-24 Aleksey Demakov + + * jit/jit-interp.c: fix JIT_OP_LCMP_UN opcode. + 2007-12-28 Klaus Treichel * jit/jit-interp.c: Fix the opcodes JIT_OP_LADD, JIT_OP_ISHL, diff --git a/jit/jit-interp.c b/jit/jit-interp.c index 107f654..e3f8dec 100644 --- a/jit/jit-interp.c +++ b/jit/jit-interp.c @@ -2051,7 +2051,7 @@ restart_tail: VMCASE(JIT_OP_LCMP_UN): { /* Compare unsigned 64-bit integers */ - VM_R0_INT = jit_long_cmp(VM_R1_ULONG, VM_R2_ULONG); + VM_R0_INT = jit_ulong_cmp(VM_R1_ULONG, VM_R2_ULONG); VM_MODIFY_PC(1); } VMBREAK;