[pypy-svn] r36344 - pypy/dist/pypy/translator

antocuni at codespeak.net antocuni at codespeak.net
Tue Jan 9 13:14:06 CET 2007


Author: antocuni
Date: Tue Jan  9 13:13:57 2007
New Revision: 36344

Modified:
   pypy/dist/pypy/translator/driver.py
Log:
Use malloc removal by default when translating to CLI.



Modified: pypy/dist/pypy/translator/driver.py
==============================================================================
--- pypy/dist/pypy/translator/driver.py	(original)
+++ pypy/dist/pypy/translator/driver.py	Tue Jan  9 13:13:57 2007
@@ -357,6 +357,7 @@
         if self.config.translation.backend == 'cli':
             opt['merge_if_blocks'] = True
             opt['inline_threshold'] = 1
+            opt['mallocs'] = True
         backend_optimizations(self.translator, **opt)
     #
     task_backendopt_ootype = taskdef(task_backendopt_ootype, 



More information about the Pypy-commit mailing list