Skip to content

Commit 43ebb94

Browse files
author
Mike Pall
committed
Fix soft-float IR_POW splitting.
Reported by lison0322.
1 parent c4fe76d commit 43ebb94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lj_opt_split.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ static void split_ir(jit_State *J)
400400
hi = split_call_ll(J, hisubst, oir, ir, IRCALL_softfp_div);
401401
break;
402402
case IR_POW:
403-
hi = split_call_li(J, hisubst, oir, ir, IRCALL_pow);
403+
hi = split_call_ll(J, hisubst, oir, ir, IRCALL_pow);
404404
break;
405405
case IR_FPMATH:
406406
hi = split_call_l(J, hisubst, oir, ir, IRCALL_lj_vm_floor + ir->op2);

0 commit comments

Comments
 (0)