[pypy-svn] r79382 - pypy/trunk/pypy/config

fijal at codespeak.net fijal at codespeak.net
Tue Nov 23 08:18:58 CET 2010


Author: fijal
Date: Tue Nov 23 08:18:57 2010
New Revision: 79382

Modified:
   pypy/trunk/pypy/config/translationoption.py
Log:
Disable jit debugging by default


Modified: pypy/trunk/pypy/config/translationoption.py
==============================================================================
--- pypy/trunk/pypy/config/translationoption.py	(original)
+++ pypy/trunk/pypy/config/translationoption.py	Tue Nov 23 08:18:57 2010
@@ -115,7 +115,7 @@
                  default="auto", cmdline="--jit-backend"),
     ChoiceOption("jit_debug", "the amount of debugging dumps made by the JIT",
                  ["off", "profile", "steps", "detailed"],
-                 default="profile",      # XXX for now
+                 default="off",
                  cmdline="--jit-debug"),
     ChoiceOption("jit_profiler", "integrate profiler support into the JIT",
                  ["off", "oprofile"],



More information about the Pypy-commit mailing list