From 113a168b792cd367822ec04cdc2ef32facd28efa Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sun, 12 Nov 2023 16:11:11 +0100 Subject: [PATCH] Improve last commit. --- src/lj_asm_x86.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lj_asm_x86.h b/src/lj_asm_x86.h index a105b439..955a54a4 100644 --- a/src/lj_asm_x86.h +++ b/src/lj_asm_x86.h @@ -473,7 +473,7 @@ static Reg asm_fuseload(ASMState *as, IRRef ref, RegSet allow) } } else if (ir->o == IR_ALOAD || ir->o == IR_HLOAD || ir->o == IR_ULOAD) { if (noconflict(as, ref, ir->o + IRDELTA_L2S, 0) && - noconflict(as, ref, IR_CALLS, 0) && /* Don't cross table.clear. */ + noconflict(as, ref, IR_CALLS, 1) && /* Don't cross table.clear. */ !(LJ_GC64 && irt_isaddr(ir->t))) { asm_fuseahuref(as, ir->op1, xallow); return RID_MRM;