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

fijal at codespeak.net fijal at codespeak.net
Fri Apr 24 20:34:56 CEST 2009


Author: fijal
Date: Fri Apr 24 20:34:55 2009
New Revision: 64651

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/compile.py
Log:
disable this optimization. I have a vague feeling that those loops appear
in random places in old_loops of optimize_bridge and in simple optimize we don't
check it at all


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/compile.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/compile.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/compile.py	Fri Apr 24 20:34:55 2009
@@ -167,7 +167,7 @@
 loops_exit_frame_with_exception = [_loop]
 map_loop2descr[_loop] = exit_frame_with_exception_descr
 del _loop
-
+map_loop2descr = {}
 
 class ResumeGuardDescr(AbstractDescr):
     def __init__(self, resume_info, consts, history, history_guard_index):



More information about the Pypy-commit mailing list