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

arigo at codespeak.net arigo at codespeak.net
Wed Nov 8 18:02:31 CET 2006


Author: arigo
Date: Wed Nov  8 18:02:30 2006
New Revision: 34384

Modified:
   pypy/dist/pypy/translator/backendopt/removeassert.py
Log:
Improve log.


Modified: pypy/dist/pypy/translator/backendopt/removeassert.py
==============================================================================
--- pypy/dist/pypy/translator/backendopt/removeassert.py	(original)
+++ pypy/dist/pypy/translator/backendopt/removeassert.py	Wed Nov  8 18:02:30 2006
@@ -27,6 +27,8 @@
                         count += 1
                         morework = True
                         break
+                    else:
+                        log.removeassert("cannot remove an assert from %s" % (graph.name,))
         if count:
             # now melt away the (hopefully) dead operation that compute
             # the condition



More information about the Pypy-commit mailing list