Commit df0159b7 by Kazu Hirata Committed by Kazu Hirata

* tree-outof-ssa.c (num_nodes): Remove num_nodes.

From-SVN: r96186
parent 184d1bb5
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
* tree-into-ssa.c (ann): Remove ann. * tree-into-ssa.c (ann): Remove ann.
* tree-outof-ssa.c (num_nodes): Remove num_nodes.
2005-03-08 Jeff Law <law@redhat.com> 2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed * tree-cfg.c (cleanup_control_flow): If removal of a computed
......
...@@ -488,7 +488,6 @@ elim_create (elim_graph g, int T) ...@@ -488,7 +488,6 @@ elim_create (elim_graph g, int T)
static void static void
eliminate_phi (edge e, elim_graph g) eliminate_phi (edge e, elim_graph g)
{ {
int num_nodes = 0;
int x; int x;
basic_block B = e->dest; basic_block B = e->dest;
...@@ -499,7 +498,6 @@ eliminate_phi (edge e, elim_graph g) ...@@ -499,7 +498,6 @@ eliminate_phi (edge e, elim_graph g)
if (e->flags & EDGE_ABNORMAL) if (e->flags & EDGE_ABNORMAL)
return; return;
num_nodes = num_var_partitions (g->map);
g->e = e; g->e = e;
eliminate_build (g, B); eliminate_build (g, B);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment