diff options
| author | Mike Pall <mike> | 2022-03-20 11:29:17 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2022-03-20 11:29:17 +0100 |
| commit | 43ebb949a249a16c49d232ad24dc9127cc4302bb (patch) | |
| tree | 266fb42d53b9adc061b4bb2863eeaf18171ad769 | |
| parent | c4fe76d50cda24f3529604448f80ff14754599dd (diff) | |
| download | luajit-43ebb949a249a16c49d232ad24dc9127cc4302bb.tar.gz luajit-43ebb949a249a16c49d232ad24dc9127cc4302bb.tar.bz2 luajit-43ebb949a249a16c49d232ad24dc9127cc4302bb.zip | |
Fix soft-float IR_POW splitting.
Reported by lison0322.
| -rw-r--r-- | src/lj_opt_split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_opt_split.c b/src/lj_opt_split.c index 18937c30..506b9814 100644 --- a/src/lj_opt_split.c +++ b/src/lj_opt_split.c | |||
| @@ -400,7 +400,7 @@ static void split_ir(jit_State *J) | |||
| 400 | hi = split_call_ll(J, hisubst, oir, ir, IRCALL_softfp_div); | 400 | hi = split_call_ll(J, hisubst, oir, ir, IRCALL_softfp_div); |
| 401 | break; | 401 | break; |
| 402 | case IR_POW: | 402 | 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); |
| 404 | break; | 404 | break; |
| 405 | case IR_FPMATH: | 405 | case IR_FPMATH: |
| 406 | hi = split_call_l(J, hisubst, oir, ir, IRCALL_lj_vm_floor + ir->op2); | 406 | hi = split_call_l(J, hisubst, oir, ir, IRCALL_lj_vm_floor + ir->op2); |
