[pypy-svn] r72096 - pypy/release/1.2.x/pypy/config

arigo at codespeak.net arigo at codespeak.net
Thu Mar 11 13:30:43 CET 2010


Author: arigo
Date: Thu Mar 11 13:30:40 2010
New Revision: 72096

Modified:
   pypy/release/1.2.x/pypy/config/translationoption.py
Log:
In the release branch, make the default value of --jit-debug be 'off'.


Modified: pypy/release/1.2.x/pypy/config/translationoption.py
==============================================================================
--- pypy/release/1.2.x/pypy/config/translationoption.py	(original)
+++ pypy/release/1.2.x/pypy/config/translationoption.py	Thu Mar 11 13:30:40 2010
@@ -106,7 +106,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