[pypy-commit] pypy ssa-flow: SSA_to_SSI() isn't needed in cleanup_graph()

rlamy noreply at buildbot.pypy.org
Sun Nov 16 05:27:15 CET 2014


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: ssa-flow
Changeset: r74535:da73f13a1ce8
Date: 2014-11-16 03:51 +0000
http://bitbucket.org/pypy/pypy/changeset/da73f13a1ce8/

Log:	SSA_to_SSI() isn't needed in cleanup_graph()

diff --git a/rpython/translator/simplify.py b/rpython/translator/simplify.py
--- a/rpython/translator/simplify.py
+++ b/rpython/translator/simplify.py
@@ -1111,7 +1111,6 @@
 def cleanup_graph(graph):
     checkgraph(graph)
     eliminate_empty_blocks(graph)
-    SSA_to_SSI(graph)
     join_blocks(graph)
     remove_identical_vars(graph)
     checkgraph(graph)


More information about the pypy-commit mailing list