[pypy-commit] pypy opcode-tracing-experiment: don't promote the pycode

fijal noreply at buildbot.pypy.org
Mon Jul 23 15:21:12 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: opcode-tracing-experiment
Changeset: r56412:6d47f4c2e4cb
Date: 2012-07-23 15:20 +0200
http://bitbucket.org/pypy/pypy/changeset/6d47f4c2e4cb/

Log:	don't promote the pycode

diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py
--- a/pypy/interpreter/pyframe.py
+++ b/pypy/interpreter/pyframe.py
@@ -433,7 +433,8 @@
         return self.pycode.hidden_applevel
 
     def getcode(self):
-        return hint(self.pycode, promote=True)
+        return self.pycode
+        #return hint(self.pycode, promote=True)
 
     @jit.dont_look_inside
     def getfastscope(self):


More information about the pypy-commit mailing list