diff options
author | Mike Pall <mike> | 2011-10-19 00:17:19 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-10-19 00:17:19 +0200 |
commit | 2fcd56258284501c6ac874d26a61ea65a05480af (patch) | |
tree | a747f784897189b9e5496dfb5d6c2c0a30a557cb /src/lj_asm_arm.h | |
parent | f50075a9d71bcd2a19029d5bbf1d1d2af6c90bd6 (diff) | |
download | luajit-2fcd56258284501c6ac874d26a61ea65a05480af.tar.gz luajit-2fcd56258284501c6ac874d26a61ea65a05480af.tar.bz2 luajit-2fcd56258284501c6ac874d26a61ea65a05480af.zip |
Don't fuse colocated array offsets without -Ofuse.
Diffstat (limited to 'src/lj_asm_arm.h')
-rw-r--r-- | src/lj_asm_arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_asm_arm.h b/src/lj_asm_arm.h index 153bb523..9da618ce 100644 --- a/src/lj_asm_arm.h +++ b/src/lj_asm_arm.h | |||
@@ -119,7 +119,7 @@ static int32_t asm_fuseabase(ASMState *as, IRRef ref) | |||
119 | { | 119 | { |
120 | IRIns *ir = IR(ref); | 120 | IRIns *ir = IR(ref); |
121 | if (ir->o == IR_TNEW && ir->op1 <= LJ_MAX_COLOSIZE && | 121 | if (ir->o == IR_TNEW && ir->op1 <= LJ_MAX_COLOSIZE && |
122 | noconflict(as, ref, IR_NEWREF)) | 122 | !neverfuse(as) && noconflict(as, ref, IR_NEWREF)) |
123 | return (int32_t)sizeof(GCtab); | 123 | return (int32_t)sizeof(GCtab); |
124 | return 0; | 124 | return 0; |
125 | } | 125 | } |