diff options
Diffstat (limited to 'mps/code/mpm.c')
| -rw-r--r-- | mps/code/mpm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mps/code/mpm.c b/mps/code/mpm.c index 4f9af3f888c..f287f2cf964 100644 --- a/mps/code/mpm.c +++ b/mps/code/mpm.c | |||
| @@ -23,10 +23,12 @@ SRCID(mpm, "$Id$"); | |||
| 23 | 23 | ||
| 24 | /* CheckLevel -- Control check level | 24 | /* CheckLevel -- Control check level |
| 25 | * | 25 | * |
| 26 | * This controls the behaviour of Check methods (see impl.h.check). | 26 | * This controls the behaviour of Check methods (see check.h). |
| 27 | */ | 27 | */ |
| 28 | 28 | ||
| 29 | unsigned CheckLevel = CHECKLEVEL_INITIAL; | 29 | #ifdef CHECKLEVEL_DYNAMIC |
| 30 | unsigned CheckLevel = CHECKLEVEL_DYNAMIC; | ||
| 31 | #endif | ||
| 30 | 32 | ||
| 31 | 33 | ||
| 32 | /* MPMCheck -- test MPM assumptions */ | 34 | /* MPMCheck -- test MPM assumptions */ |