[pypy-svn] r27182 - pypy/dist/pypy/translator/backendopt

pedronis at codespeak.net pedronis at codespeak.net
Sat May 13 18:39:29 CEST 2006


Author: pedronis
Date: Sat May 13 18:39:28 2006
New Revision: 27182

Modified:
   pypy/dist/pypy/translator/backendopt/graphanalyze.py
Log:
bug in graphanalyzer



Modified: pypy/dist/pypy/translator/backendopt/graphanalyze.py
==============================================================================
--- pypy/dist/pypy/translator/backendopt/graphanalyze.py	(original)
+++ pypy/dist/pypy/translator/backendopt/graphanalyze.py	Sat May 13 18:39:28 2006
@@ -66,6 +66,7 @@
                     return True
             for exit in block.exits:
                 if self.analyze_link(graph, exit):
+                    self.analyzed_calls[graph] = True
                     return True
         self.analyzed_calls[graph] = False
         return False



More information about the Pypy-commit mailing list