[pypy-svn] r65351 - pypy/branch/pyjitpl5/pypy/config

antocuni at codespeak.net antocuni at codespeak.net
Thu May 21 21:51:08 CEST 2009


Author: antocuni
Date: Thu May 21 21:51:06 2009
New Revision: 65351

Modified:
   pypy/branch/pyjitpl5/pypy/config/translationoption.py
Log:
use "boehm" as a dummy value, else it conflicts with tl/pypyjit.py


Modified: pypy/branch/pyjitpl5/pypy/config/translationoption.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/config/translationoption.py	(original)
+++ pypy/branch/pyjitpl5/pypy/config/translationoption.py	Thu May 21 21:51:06 2009
@@ -30,7 +30,7 @@
                                 ("translation.backendopt.heap2stack", False),
                                 ("translation.backendopt.clever_malloc_removal", False),
                                 ("translation.list_comprehension_operations", False),
-                                ("translation.gc", "generation"), # it's not really used, but some jit code expects a value here
+                                ("translation.gc", "boehm"), # it's not really used, but some jit code expects a value here
                                 ]
                      }),
     ChoiceOption("backend", "Backend to use for code generation",



More information about the Pypy-commit mailing list