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

arigo at codespeak.net arigo at codespeak.net
Wed Feb 25 19:16:38 CET 2009


Author: arigo
Date: Wed Feb 25 19:16:37 2009
New Revision: 62163

Modified:
   pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py
Log:
Fix.


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	Wed Feb 25 19:16:37 2009
@@ -37,11 +37,11 @@
 
     def dispatch(self, pycode, next_instr, ec):
         next_instr = r_uint(next_instr)
-        co_code = pycode.co_code
         try:
             while True:
                 pypyjitdriver.jit_merge_point(
                     frame=self, ec=ec, next_instr=next_instr, pycode=pycode)
+                co_code = pycode.co_code
                 next_instr = self.handle_bytecode(co_code, next_instr, ec)
         except ExitFrame:
             return self.popvalue()



More information about the Pypy-commit mailing list