[pypy-svn] r25345 - pypy/branch/explicit-exceptions/translator

mwh at codespeak.net mwh at codespeak.net
Wed Apr 5 11:46:32 CEST 2006


Author: mwh
Date: Wed Apr  5 11:46:31 2006
New Revision: 25345

Modified:
   pypy/branch/explicit-exceptions/translator/unsimplify.py
Log:
don't call checkgraph in split_block, it slows down translation by a factor of
6 or so.


Modified: pypy/branch/explicit-exceptions/translator/unsimplify.py
==============================================================================
--- pypy/branch/explicit-exceptions/translator/unsimplify.py	(original)
+++ pypy/branch/explicit-exceptions/translator/unsimplify.py	Wed Apr  5 11:46:31 2006
@@ -84,7 +84,7 @@
     block.exits = [link]
     block.exitswitch = None
     block.exc_handler = False
-    checkgraph(graph)
+    #checkgraph(graph)
     return newblock
 
 def remove_direct_loops(translator, graph):



More information about the Pypy-commit mailing list