diff options
author | Mike Pall <mike> | 2012-04-29 21:25:46 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-04-29 21:25:46 +0200 |
commit | 9a2ae72bce94579fe497c5dddcbfdb76e3e6220e (patch) | |
tree | 9eb37539ba41c2a590698a39df8ef54c12d75b1e | |
parent | e099059afdcb2872c20fff12d6cd8e48853002d8 (diff) | |
download | luajit-9a2ae72bce94579fe497c5dddcbfdb76e3e6220e.tar.gz luajit-9a2ae72bce94579fe497c5dddcbfdb76e3e6220e.tar.bz2 luajit-9a2ae72bce94579fe497c5dddcbfdb76e3e6220e.zip |
ARM: Handle all CALL* ops with double results in SPLIT pass.
-rw-r--r-- | src/lj_opt_split.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_opt_split.c b/src/lj_opt_split.c index 8a2af24b..e45a0294 100644 --- a/src/lj_opt_split.c +++ b/src/lj_opt_split.c | |||
@@ -364,6 +364,8 @@ static void split_ir(jit_State *J) | |||
364 | hi = split_emit(J, IRT(IR_HIOP, IRT_SOFTFP), nref, nref); | 364 | hi = split_emit(J, IRT(IR_HIOP, IRT_SOFTFP), nref, nref); |
365 | break; | 365 | break; |
366 | } | 366 | } |
367 | case IR_CALLN: | ||
368 | case IR_CALLL: | ||
367 | case IR_CALLS: | 369 | case IR_CALLS: |
368 | case IR_CALLXS: | 370 | case IR_CALLXS: |
369 | goto split_call; | 371 | goto split_call; |