[pypy-svn] r52224 - pypy/branch/jit-refactoring/pypy/jit/rainbow

arigo at codespeak.net arigo at codespeak.net
Thu Mar 6 18:39:37 CET 2008


Author: arigo
Date: Thu Mar  6 18:39:37 2008
New Revision: 52224

Modified:
   pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py
Log:
The 'resumepoint' value is not really needed any more,
as this shows (tests still pass).


Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py	Thu Mar  6 18:39:37 2008
@@ -285,7 +285,8 @@
                         continue
                     return STOP
             else:
-                self.frame.pc = resumepoint
+                # XXX the 'resumepoint' value is not really needed any more
+                assert self.frame.pc == resumepoint
             return
 
     # operation helper functions



More information about the Pypy-commit mailing list