diff options
author | Mike Pall <mike> | 2011-02-02 21:33:11 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-02-02 21:33:11 +0100 |
commit | 1027018b2135caf45057c3d3b3da03ffb0c6add3 (patch) | |
tree | 3d3eeae358900db5e164f9d4d80f819e84c7c895 /src/lj_opt_split.c | |
parent | 433fd18f6d44ab5fc68f65cfdf1d1fab7d89992e (diff) | |
download | luajit-1027018b2135caf45057c3d3b3da03ffb0c6add3.tar.gz luajit-1027018b2135caf45057c3d3b3da03ffb0c6add3.tar.bz2 luajit-1027018b2135caf45057c3d3b3da03ffb0c6add3.zip |
Rename IR_POWI to IR_POW.
Diffstat (limited to '')
-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 f4339e85..f53616b3 100644 --- a/src/lj_opt_split.c +++ b/src/lj_opt_split.c | |||
@@ -207,7 +207,7 @@ static void split_ir(jit_State *J) | |||
207 | irt_isi64(ir->t) ? IRCALL_lj_carith_modi64 : | 207 | irt_isi64(ir->t) ? IRCALL_lj_carith_modi64 : |
208 | IRCALL_lj_carith_modu64); | 208 | IRCALL_lj_carith_modu64); |
209 | break; | 209 | break; |
210 | case IR_POWI: | 210 | case IR_POW: |
211 | hi = split_call64(J, hisubst, oir, ir, | 211 | hi = split_call64(J, hisubst, oir, ir, |
212 | irt_isi64(ir->t) ? IRCALL_lj_carith_powi64 : | 212 | irt_isi64(ir->t) ? IRCALL_lj_carith_powi64 : |
213 | IRCALL_lj_carith_powu64); | 213 | IRCALL_lj_carith_powu64); |