Browse Source

Increase max. fusion distance.

Mike Pall 15 years ago
parent
commit
5c8f1f2594
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lj_asm.c

+ 1 - 1
src/lj_asm.c

@@ -1095,7 +1095,7 @@ IRFLDEF(FLOFS)
 };
 };
 
 
 /* Limit linear search to this distance. Avoids O(n^2) behavior. */
 /* 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. */
 /* Check if there's no conflicting instruction between curins and ref. */
 static int noconflict(ASMState *as, IRRef ref, IROp conflict)
 static int noconflict(ASMState *as, IRRef ref, IROp conflict)