[pypy-svn] r29424 - pypy/dist/pypy/translator/backendopt

arigo at codespeak.net arigo at codespeak.net
Wed Jun 28 11:54:26 CEST 2006


Author: arigo
Date: Wed Jun 28 11:54:22 2006
New Revision: 29424

Modified:
   pypy/dist/pypy/translator/backendopt/all.py
Log:
Enable constfold by default: a normal pypy-c compiles successfully and
the result passes lib-python tests, and seems a little bit faster.



Modified: pypy/dist/pypy/translator/backendopt/all.py
==============================================================================
--- pypy/dist/pypy/translator/backendopt/all.py	(original)
+++ pypy/dist/pypy/translator/backendopt/all.py	Wed Jun 28 11:54:22 2006
@@ -20,7 +20,7 @@
                                       mallocs=True,
                                       merge_if_blocks_to_switch=True,
                                       propagate=False,
-                                      constfold=False,
+                                      constfold=True,
                                       heap2stack=False,
                                       clever_malloc_removal=False):
 



More information about the Pypy-commit mailing list