From 4e90e1da3d0972d3a75a34055a206aca55afcc5b Mon Sep 17 00:00:00 2001 From: Klaus Treichel Date: Tue, 21 Sep 2010 19:59:53 +0200 Subject: [PATCH] Fix build on 32bit archs. --- jit/jit-opcode-apply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jit/jit-opcode-apply.c b/jit/jit-opcode-apply.c index 494436b..aa97f69 100644 --- a/jit/jit-opcode-apply.c +++ b/jit/jit-opcode-apply.c @@ -287,7 +287,7 @@ apply_i_plll(jit_constant_t *const_result, #else return (*intrinsic)(&(const_result->un.long_value), *(jit_long *)(value1->address), - *(jit_long *)(value2->address))) + *(jit_long *)(value2->address)); #endif } return 0; -- 2.47.3