From: Mike Pall Date: Sun, 29 Apr 2012 19:25:46 +0000 (+0200) Subject: ARM: Handle all CALL* ops with double results in SPLIT pass. X-Git-Tag: v2.0.0-beta10~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a2ae72bce94579fe497c5dddcbfdb76e3e6220e;p=thirdparty%2FLuaJIT.git ARM: Handle all CALL* ops with double results in SPLIT pass. --- diff --git a/src/lj_opt_split.c b/src/lj_opt_split.c index 8a2af24b..e45a0294 100644 --- a/src/lj_opt_split.c +++ b/src/lj_opt_split.c @@ -364,6 +364,8 @@ static void split_ir(jit_State *J) hi = split_emit(J, IRT(IR_HIOP, IRT_SOFTFP), nref, nref); break; } + case IR_CALLN: + case IR_CALLL: case IR_CALLS: case IR_CALLXS: goto split_call;