[pypy-svn] r62686 - pypy/branch/pyjitpl5/pypy/jit/metainterp

arigo at codespeak.net arigo at codespeak.net
Sat Mar 7 10:57:15 CET 2009


Author: arigo
Date: Sat Mar  7 10:57:14 2009
New Revision: 62686

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py
Log:
Fix bug!


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/pyjitpl.py	Sat Mar  7 10:57:14 2009
@@ -951,7 +951,7 @@
     def rebuild_state_after_failure(self, key, newboxes):
         if not we_are_translated():
             self._debug_history.append(['guard_failure', None, None])
-            self.framestack = []
+        self.framestack = []
         nbindex = 0
         for jitcode, pc, envlength, exception_target in key:
             f = self.newframe(jitcode)



More information about the Pypy-commit mailing list