[pypy-svn] r33059 - pypy/dist/pypy/translator/cli

antocuni at codespeak.net antocuni at codespeak.net
Mon Oct 9 16:39:44 CEST 2006


Author: antocuni
Date: Mon Oct  9 16:39:43 2006
New Revision: 33059

Modified:
   pypy/dist/pypy/translator/cli/gencli.py
Log:
Disable stackopt for now, because it seems to be buggy.



Modified: pypy/dist/pypy/translator/cli/gencli.py
==============================================================================
--- pypy/dist/pypy/translator/cli/gencli.py	(original)
+++ pypy/dist/pypy/translator/cli/gencli.py	Mon Oct  9 16:39:43 2006
@@ -16,7 +16,8 @@
 from pypy.translator.cli.prebuiltnodes import get_prebuilt_nodes
 from pypy.translator.cli.stackopt import StackOptGenerator
 
-USE_STACKOPT = True and not getoption('nostackopt')
+#USE_STACKOPT = True and not getoption('nostackopt')
+USE_STACKOPT = False
 
 class GenCli(object):
     def __init__(self, tmpdir, translator, entrypoint=None, type_system_class=CTS,



More information about the Pypy-commit mailing list