[pypy-svn] r35046 - pypy/dist/pypy/jit/codegen/llgraph

ac at codespeak.net ac at codespeak.net
Mon Nov 27 17:46:29 CET 2006


Author: ac
Date: Mon Nov 27 17:46:28 2006
New Revision: 35046

Modified:
   pypy/dist/pypy/jit/codegen/llgraph/llimpl.py
Log:
(pedronis, arre) Oops.

Modified: pypy/dist/pypy/jit/codegen/llgraph/llimpl.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llgraph/llimpl.py	(original)
+++ pypy/dist/pypy/jit/codegen/llgraph/llimpl.py	Mon Nov 27 17:46:28 2006
@@ -394,10 +394,10 @@
     graph = buildgraph(graph, FUNCTYPE)
     return testgengraph(graph, args, viewbefore, executor)
 
-def show_incremental_progress(graph):
+def show_incremental_progress(gv_func):
     from pypy import conftest
     if conftest.option.view:
-        graph = from_opaque_object(graph)
+        graph = _getgraph(gv_func)
         eliminate_empty_blocks(graph)
         graph.show()
 



More information about the Pypy-commit mailing list