[pypy-svn] r72876 - pypy/trunk/pypy/module/pypyjit

benjamin at codespeak.net benjamin at codespeak.net
Fri Mar 26 04:21:49 CET 2010


Author: benjamin
Date: Fri Mar 26 04:21:48 2010
New Revision: 72876

Modified:
   pypy/trunk/pypy/module/pypyjit/interp_jit.py
Log:
fix names

Modified: pypy/trunk/pypy/module/pypyjit/interp_jit.py
==============================================================================
--- pypy/trunk/pypy/module/pypyjit/interp_jit.py	(original)
+++ pypy/trunk/pypy/module/pypyjit/interp_jit.py	Fri Mar 26 04:21:48 2010
@@ -80,11 +80,11 @@
 
     def jump_absolute(self, jumpto, _, ec=None):
         if we_are_jitted():
-            f.last_instr = intmask(jumpto)
-            ec.bytecode_trace(f)
-            jumpto = r_uint(f.last_instr)
-        pypyjitdriver.can_enter_jit(frame=f, ec=ec, next_instr=jumpto,
-                                    pycode=f.getcode())
+            self.last_instr = intmask(jumpto)
+            ec.bytecode_trace(self)
+            jumpto = r_uint(self.last_instr)
+        pypyjitdriver.can_enter_jit(frame=self, ec=ec, next_instr=jumpto,
+                                    pycode=self.getcode())
         return jumpto
 
 



More information about the Pypy-commit mailing list