aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/mpm.c
diff options
context:
space:
mode:
authorRichard Brooksby2012-09-01 11:40:43 +0100
committerRichard Brooksby2012-09-01 11:40:43 +0100
commit4fde4e10b29d4779189b81cf9c8a050593514aa3 (patch)
tree594dce89e7f1c46ffa568a87e73319a7863f9bad /mps/code/mpm.c
parent89a685f16488555436a7e70782ab3ac6132a59bf (diff)
downloademacs-4fde4e10b29d4779189b81cf9c8a050593514aa3.tar.gz
emacs-4fde4e10b29d4779189b81cf9c8a050593514aa3.zip
Compiling with a static checking level by default, doubling the speed of the cool variety.
Copied from Perforce Change: 179157 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/mpm.c')
-rw-r--r--mps/code/mpm.c6
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
29unsigned CheckLevel = CHECKLEVEL_INITIAL; 29#ifdef CHECKLEVEL_DYNAMIC
30unsigned CheckLevel = CHECKLEVEL_DYNAMIC;
31#endif
30 32
31 33
32/* MPMCheck -- test MPM assumptions */ 34/* MPMCheck -- test MPM assumptions */