From: Klaus Treichel Date: Tue, 21 Sep 2010 17:59:53 +0000 (+0200) Subject: Fix build on 32bit archs. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=4e90e1da3d0972d3a75a34055a206aca55afcc5b;p=francis%2Flibjit.git Fix build on 32bit archs. --- 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;