[pypy-svn] r65754 - pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Fri Jun 12 21:25:26 CEST 2009


Author: fijal
Date: Fri Jun 12 21:25:23 2009
New Revision: 65754

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/pyjitpl.py
Log:
disable even trying preparing loop from bridge (it raises anyway)


Modified: pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/pyjitpl.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/pyjitpl.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/pyjitpl.py	Fri Jun 12 21:25:23 2009
@@ -1179,7 +1179,7 @@
                         # clean up, but without shifting the end of the list
                         for i in range(start):
                             self.history.operations[i] = None
-                        compile.prepare_loop_from_bridge(self, self.resumekey)
+                        #compile.prepare_loop_from_bridge(self, self.resumekey)
                 loop = self.compile(original_boxes, live_arg_boxes, start)
                 raise GenerateMergePoint(live_arg_boxes, loop)
 



More information about the Pypy-commit mailing list