[pypy-svn] r65394 - pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Mon May 25 00:55:26 CEST 2009


Author: fijal
Date: Mon May 25 00:55:25 2009
New Revision: 65394

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/codewriter.py
Log:
I suppose we're mature enough to print a dot per graph instead :)


Modified: pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/codewriter.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/codewriter.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/codewriter.py	Mon May 25 00:55:25 2009
@@ -293,7 +293,7 @@
         if self.debug:
             self.bytecode.dump()
         else:
-            print repr(self.bytecode)
+            log.dot()
             dir = udir.ensure("jitcodes", dir=1)
             if self.portal:
                 name = "portal_runner"



More information about the Pypy-commit mailing list