From 8d31b5cdde5041d8c16a71588ee5b83248f1f8a1 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Mon, 30 Apr 2012 12:59:45 +0200 Subject: [PATCH] ARM: Fix rejoin of pow in SPLIT pass. --- src/lj_opt_split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lj_opt_split.c b/src/lj_opt_split.c index e45a0294..72720e86 100644 --- a/src/lj_opt_split.c +++ b/src/lj_opt_split.c @@ -281,7 +281,7 @@ static void split_ir(jit_State *J) tmp = split_emit(J, IRT(IR_CARG, IRT_NIL), tmp, arg3); tmp = split_emit(J, IRT(IR_CARG, IRT_NIL), tmp, arg4); ir->prev = tmp = split_emit(J, IRTI(IR_CALLN), tmp, IRCALL_pow); - hi = split_emit(J, IRT(IR_HIOP, LJ_SOFTFP), tmp, tmp); + hi = split_emit(J, IRT(IR_HIOP, IRT_SOFTFP), tmp, tmp); break; } }