From 5c8f1f2594a26df5f1be6cd95bc2fecfeed372e9 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Fri, 19 Mar 2010 00:28:04 +0100 Subject: [PATCH] Increase max. fusion distance. --- src/lj_asm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lj_asm.c b/src/lj_asm.c index 81589cf9..aa42d677 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c @@ -1095,7 +1095,7 @@ IRFLDEF(FLOFS) }; /* Limit linear search to this distance. Avoids O(n^2) behavior. */ -#define CONFLICT_SEARCH_LIM 15 +#define CONFLICT_SEARCH_LIM 31 /* Check if there's no conflicting instruction between curins and ref. */ static int noconflict(ASMState *as, IRRef ref, IROp conflict)