[pypy-svn] r67036 - pypy/branch/pyjitpl5/pypy/module/pypyjit

arigo at codespeak.net arigo at codespeak.net
Thu Aug 20 17:02:47 CEST 2009


Author: arigo
Date: Thu Aug 20 17:02:46 2009
New Revision: 67036

Modified:
   pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py
Log:
This removes all guards about PyCode except the first one,
which is fine for now.


Modified: pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py	(original)
+++ pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py	Thu Aug 20 17:02:46 2009
@@ -20,7 +20,7 @@
 from opcode import opmap
 from pypy.rlib.objectmodel import we_are_translated
 
-PyFrame._virtualizable2_ = ['last_instr',
+PyFrame._virtualizable2_ = ['last_instr', 'pycode',
                             'valuestackdepth', 'valuestack_w[*]',
                             'fastlocals_w[*]',
                             ]



More information about the Pypy-commit mailing list