From: Mike Pall Date: Thu, 18 Mar 2010 23:28:04 +0000 (+0100) Subject: Increase max. fusion distance. X-Git-Tag: v2.0.0-beta4~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c8f1f2594a26df5f1be6cd95bc2fecfeed372e9;p=thirdparty%2FLuaJIT.git Increase max. fusion distance. --- 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)