]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Increase max. fusion distance.
authorMike Pall <mike>
Thu, 18 Mar 2010 23:28:04 +0000 (00:28 +0100)
committerMike Pall <mike>
Thu, 18 Mar 2010 23:28:04 +0000 (00:28 +0100)
src/lj_asm.c

index 81589cf9275253aa04be5ce70b403f5720264a23..aa42d677d0e3932a30cf7e519d91f8bd056f2629 100644 (file)
@@ -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)