diff options
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index 7e26aadc..1f7ddc21 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -232,7 +232,7 @@ typedef struct HotPenalty { | |||
232 | } HotPenalty; | 232 | } HotPenalty; |
233 | 233 | ||
234 | #define PENALTY_SLOTS 64 /* Penalty cache slot. Must be a power of 2. */ | 234 | #define PENALTY_SLOTS 64 /* Penalty cache slot. Must be a power of 2. */ |
235 | #define PENALTY_MIN 36 /* Minimum penalty value. */ | 235 | #define PENALTY_MIN (36*2) /* Minimum penalty value. */ |
236 | #define PENALTY_MAX 60000 /* Maximum penalty value. */ | 236 | #define PENALTY_MAX 60000 /* Maximum penalty value. */ |
237 | #define PENALTY_RNDBITS 4 /* # of random bits to add to penalty value. */ | 237 | #define PENALTY_RNDBITS 4 /* # of random bits to add to penalty value. */ |
238 | 238 | ||