diff options
author | Mike Pall <mike> | 2010-03-19 00:28:04 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-03-19 00:28:04 +0100 |
commit | 5c8f1f2594a26df5f1be6cd95bc2fecfeed372e9 (patch) | |
tree | 0fd6d6e80cb2d6f63d44633105a828d02d2128ad /src | |
parent | 37a3ca330fca12a9f939f923c5d590410e5d9f11 (diff) | |
download | luajit-5c8f1f2594a26df5f1be6cd95bc2fecfeed372e9.tar.gz luajit-5c8f1f2594a26df5f1be6cd95bc2fecfeed372e9.tar.bz2 luajit-5c8f1f2594a26df5f1be6cd95bc2fecfeed372e9.zip |
Increase max. fusion distance.
Diffstat (limited to 'src')
-rw-r--r-- | src/lj_asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
1095 | }; | 1095 | }; |
1096 | 1096 | ||
1097 | /* Limit linear search to this distance. Avoids O(n^2) behavior. */ | 1097 | /* Limit linear search to this distance. Avoids O(n^2) behavior. */ |
1098 | #define CONFLICT_SEARCH_LIM 15 | 1098 | #define CONFLICT_SEARCH_LIM 31 |
1099 | 1099 | ||
1100 | /* Check if there's no conflicting instruction between curins and ref. */ | 1100 | /* Check if there's no conflicting instruction between curins and ref. */ |
1101 | static int noconflict(ASMState *as, IRRef ref, IROp conflict) | 1101 | static int noconflict(ASMState *as, IRRef ref, IROp conflict) |