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

antocuni at codespeak.net antocuni at codespeak.net
Fri May 1 10:48:13 CEST 2009


Author: antocuni
Date: Fri May  1 10:48:08 2009
New Revision: 64925

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py
Log:
don't call broken code


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py	Fri May  1 10:48:08 2009
@@ -124,7 +124,7 @@
         self.metainterp_sd.generate_bytecode(policy, self.ts)
         self.make_enter_function()
         self.rewrite_can_enter_jit()
-        self.rewrite_entry_point()
+        #self.rewrite_entry_point() XXX broken when the last block handles exceptions
         self.metainterp_sd.num_green_args = self.num_green_args
         self.metainterp_sd.state = self.state
 



More information about the Pypy-commit mailing list