From bd92c0b19bdc78ea9e76938c0afa0081decd2f46 Mon Sep 17 00:00:00 2001 From: Aleksey Demakov Date: Fri, 28 Dec 2007 19:53:36 +0000 Subject: [PATCH] fix interpreter JIT_OP_LCMP_UN opcode --- ChangeLog | 4 ++++ jit/jit-interp.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 2.47.3