[pypy-commit] pypy cells-local-stack: fix virtualizable declaration

cfbolz noreply at buildbot.pypy.org
Fri May 8 18:46:09 CEST 2015


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: cells-local-stack
Changeset: r77231:949773852cc3
Date: 2015-05-08 18:46 +0200
http://bitbucket.org/pypy/pypy/changeset/949773852cc3/

Log:	fix virtualizable declaration

diff --git a/pypy/module/pypyjit/interp_jit.py b/pypy/module/pypyjit/interp_jit.py
--- a/pypy/module/pypyjit/interp_jit.py
+++ b/pypy/module/pypyjit/interp_jit.py
@@ -19,8 +19,8 @@
 
 
 PyFrame._virtualizable_ = ['last_instr', 'pycode',
-                           'valuestackdepth', 'locals_stack_w[*]',
-                           'cells[*]',
+                           'valuestackdepth',
+                           'locals_cells_stack_w[*]',
                            'debugdata',
                            'last_exception',
                            'lastblock',


More information about the pypy-commit mailing list