From 9a2ae72bce94579fe497c5dddcbfdb76e3e6220e Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sun, 29 Apr 2012 21:25:46 +0200 Subject: [PATCH] ARM: Handle all CALL* ops with double results in SPLIT pass. --- src/lj_opt_split.c | 2 ++ 1 file changed, 2 insertions(+) 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;