[pypy-commit] pypy spaceops-are-variables: Temporarily disable malloc removal in the translator -- it's not yet fixed and some (otherwise unrelated) tests fails because it was enabled by default.

mjacob noreply at buildbot.pypy.org
Sun Mar 1 12:37:08 CET 2015


Author: Manuel Jacob <me at manueljacob.de>
Branch: spaceops-are-variables
Changeset: r76209:eb037c42c6be
Date: 2015-03-01 12:35 +0100
http://bitbucket.org/pypy/pypy/changeset/eb037c42c6be/

Log:	Temporarily disable malloc removal in the translator -- it's not yet
	fixed and some (otherwise unrelated) tests fails because it was
	enabled by default.

diff --git a/rpython/translator/backendopt/all.py b/rpython/translator/backendopt/all.py
--- a/rpython/translator/backendopt/all.py
+++ b/rpython/translator/backendopt/all.py
@@ -170,8 +170,8 @@
 
     # vaporize mallocs
     if config.mallocs:
-        log.malloc("starting malloc removal")
-        remove_mallocs(translator, graphs, type_system)
+        #log.malloc("starting malloc removal")
+        #remove_mallocs(translator, graphs, type_system)
 
         if config.print_statistics:
             print "after malloc removal:"


More information about the pypy-commit mailing list