[pypy-commit] pypy autoreds: bah. "typo" which made all the jit tests failing"

antocuni noreply at buildbot.pypy.org
Tue Nov 13 21:55:45 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: autoreds
Changeset: r58862:961e69cc71c5
Date: 2012-11-13 21:50 +0100
http://bitbucket.org/pypy/pypy/changeset/961e69cc71c5/

Log:	bah. "typo" which made all the jit tests failing"

diff --git a/pypy/jit/metainterp/warmspot.py b/pypy/jit/metainterp/warmspot.py
--- a/pypy/jit/metainterp/warmspot.py
+++ b/pypy/jit/metainterp/warmspot.py
@@ -257,7 +257,7 @@
         new_portals = set()
         for caller, callee in callgraph:
             func = getattr(callee, 'func', None)
-            _inline_in_portal_ = getattr(func, '_inline_in_portal_', True)
+            _inline_in_portal_ = getattr(func, '_inline_in_portal_', False)
             if _inline_in_portal_:
                 count = inline.inline_function(self.translator, callee, caller,
                                                lltype_to_classdef, raise_analyzer)


More information about the pypy-commit mailing list