浏览代码

Fix soft-float IR_POW splitting.

Reported by lison0322.
Mike Pall 3 年之前
父节点
当前提交
43ebb949a2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/lj_opt_split.c

+ 1 - 1
src/lj_opt_split.c

@@ -400,7 +400,7 @@ static void split_ir(jit_State *J)
 	hi = split_call_ll(J, hisubst, oir, ir, IRCALL_softfp_div);
 	break;
       case IR_POW:
-	hi = split_call_li(J, hisubst, oir, ir, IRCALL_pow);
+	hi = split_call_ll(J, hisubst, oir, ir, IRCALL_pow);
 	break;
       case IR_FPMATH:
 	hi = split_call_l(J, hisubst, oir, ir, IRCALL_lj_vm_floor + ir->op2);