[pypy-svn] r74899 - pypy/release/1.2.1.x/pypy/config

fijal at codespeak.net fijal at codespeak.net
Sat May 29 21:02:08 CEST 2010


Author: fijal
Date: Sat May 29 21:01:44 2010
New Revision: 74899

Modified:
   pypy/release/1.2.1.x/pypy/config/translationoption.py
Log:
Turn off jit profiling for the release (by default)


Modified: pypy/release/1.2.1.x/pypy/config/translationoption.py
==============================================================================
--- pypy/release/1.2.1.x/pypy/config/translationoption.py	(original)
+++ pypy/release/1.2.1.x/pypy/config/translationoption.py	Sat May 29 21:01:44 2010
@@ -112,7 +112,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