[pypy-svn] r24459 - pypy/dist/pypy/rpython/memory

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Mar 16 13:57:22 CET 2006


Author: cfbolz
Date: Thu Mar 16 13:57:20 2006
New Revision: 24459

Modified:
   pypy/dist/pypy/rpython/memory/gctransform.py
Log:
do a checkgraph at the end of the gc transformation


Modified: pypy/dist/pypy/rpython/memory/gctransform.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform.py	Thu Mar 16 13:57:20 2006
@@ -87,6 +87,7 @@
                     inline.inline_function(self.translator, inline_graph, graph)
                 except inline.CannotInline:
                     pass
+        checkgraph(graph)
 
     def transform_block(self, block):
         newops = []



More information about the Pypy-commit mailing list