diff options
author | Mike Pall <mike> | 2012-07-04 21:14:37 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-07-04 21:15:15 +0200 |
commit | bd782cedd5079a49e30310837c899e98ce11c95c (patch) | |
tree | 2d32558ccf28fdb90897922f29844e06e08f6dbe /src/lj_def.h | |
parent | c22d698e17e4f73ee8a146248c49b6dce10d3b74 (diff) | |
download | luajit-bd782cedd5079a49e30310837c899e98ce11c95c.tar.gz luajit-bd782cedd5079a49e30310837c899e98ce11c95c.tar.bz2 luajit-bd782cedd5079a49e30310837c899e98ce11c95c.zip |
Bump some limits to accomodate SINK pass.
Diffstat (limited to '')
-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 27b6d6b7..a7531f10 100644 --- a/src/lj_def.h +++ b/src/lj_def.h | |||
@@ -80,7 +80,7 @@ typedef unsigned int uintptr_t; | |||
80 | 80 | ||
81 | /* JIT compiler limits. */ | 81 | /* JIT compiler limits. */ |
82 | #define LJ_MAX_JSLOTS 250 /* Max. # of stack slots for a trace. */ | 82 | #define LJ_MAX_JSLOTS 250 /* Max. # of stack slots for a trace. */ |
83 | #define LJ_MAX_PHI 32 /* Max. # of PHIs for a loop. */ | 83 | #define LJ_MAX_PHI 64 /* Max. # of PHIs for a loop. */ |
84 | #define LJ_MAX_EXITSTUBGR 16 /* Max. # of exit stub groups. */ | 84 | #define LJ_MAX_EXITSTUBGR 16 /* Max. # of exit stub groups. */ |
85 | 85 | ||
86 | /* Various macros. */ | 86 | /* Various macros. */ |