diff options
author | Mike Pall <mike> | 2011-09-05 23:12:58 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-09-05 23:12:58 +0200 |
commit | c56ae9f6efe074e6461e551440a410f97fe9b979 (patch) | |
tree | acc526275f72027dd593f5836122ce063dc1756c /src | |
parent | 1b949dc60a64676589c14baa46a4b56969df3cf6 (diff) | |
download | luajit-c56ae9f6efe074e6461e551440a410f97fe9b979.tar.gz luajit-c56ae9f6efe074e6461e551440a410f97fe9b979.tar.bz2 luajit-c56ae9f6efe074e6461e551440a410f97fe9b979.zip |
Increase max. number of exit stub groups to correspond with -Omaxsnap.
Diffstat (limited to 'src')
-rw-r--r-- | src/lj_def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_def.h b/src/lj_def.h index 78d988ea..dadb8c0a 100644 --- a/src/lj_def.h +++ b/src/lj_def.h | |||
@@ -79,7 +79,7 @@ typedef unsigned int uintptr_t; | |||
79 | /* JIT compiler limits. */ | 79 | /* JIT compiler limits. */ |
80 | #define LJ_MAX_JSLOTS 250 /* Max. # of stack slots for a trace. */ | 80 | #define LJ_MAX_JSLOTS 250 /* Max. # of stack slots for a trace. */ |
81 | #define LJ_MAX_PHI 32 /* Max. # of PHIs for a loop. */ | 81 | #define LJ_MAX_PHI 32 /* Max. # of PHIs for a loop. */ |
82 | #define LJ_MAX_EXITSTUBGR 8 /* Max. # of exit stub groups. */ | 82 | #define LJ_MAX_EXITSTUBGR 16 /* Max. # of exit stub groups. */ |
83 | 83 | ||
84 | /* Various macros. */ | 84 | /* Various macros. */ |
85 | #ifndef UNUSED | 85 | #ifndef UNUSED |