diff options
Diffstat (limited to '')
-rw-r--r-- | src/lj_asm_x86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_asm_x86.h b/src/lj_asm_x86.h index 9fa411a0..aee33716 100644 --- a/src/lj_asm_x86.h +++ b/src/lj_asm_x86.h | |||
@@ -118,7 +118,7 @@ static int noconflict(ASMState *as, IRRef ref, IROp conflict, int check) | |||
118 | while (--i > ref) { | 118 | while (--i > ref) { |
119 | if (ir[i].o == conflict) | 119 | if (ir[i].o == conflict) |
120 | return 0; /* Conflict found. */ | 120 | return 0; /* Conflict found. */ |
121 | else if ((check & 1) && ir[i].o == IR_NEWREF) | 121 | else if ((check & 1) && (ir[i].o == IR_NEWREF || ir[i].o == IR_CALLS)) |
122 | return 0; | 122 | return 0; |
123 | else if ((check & 2) && (ir[i].op1 == ref || ir[i].op2 == ref)) | 123 | else if ((check & 2) && (ir[i].op1 == ref || ir[i].op2 == ref)) |
124 | return 0; | 124 | return 0; |