[pypy-svn] r67172 - pypy/branch/pyjitpl5-noframestack/pypy/module/pypyjit

fijal at codespeak.net fijal at codespeak.net
Mon Aug 24 18:51:37 CEST 2009


Author: fijal
Date: Mon Aug 24 18:51:35 2009
New Revision: 67172

Modified:
   pypy/branch/pyjitpl5-noframestack/pypy/module/pypyjit/interp_jit.py
Log:
*ARGH* Make f_forward a virtualizable


Modified: pypy/branch/pyjitpl5-noframestack/pypy/module/pypyjit/interp_jit.py
==============================================================================
--- pypy/branch/pyjitpl5-noframestack/pypy/module/pypyjit/interp_jit.py	(original)
+++ pypy/branch/pyjitpl5-noframestack/pypy/module/pypyjit/interp_jit.py	Mon Aug 24 18:51:35 2009
@@ -22,7 +22,7 @@
 
 PyFrame._virtualizable2_ = ['last_instr', 'pycode',
                             'valuestackdepth', 'valuestack_w[*]',
-                            'fastlocals_w[*]',
+                            'fastlocals_w[*]', 'f_forward',
                             ]
 
 JUMP_ABSOLUTE = opmap['JUMP_ABSOLUTE']



More information about the Pypy-commit mailing list