aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-03-09 11:34:38 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-03-09 11:34:38 +0000
commitdf0159b7aad3b3738e6663566e4b223cc8a1be7e (patch)
tree7992323632ddd0d83bc23b86b3e9558c8237d0e5
parent184d1bb5d7cdd3542c6eab06cf8d606a9f1e0f11 (diff)
downloadgcc-df0159b7aad3b3738e6663566e4b223cc8a1be7e.zip
gcc-df0159b7aad3b3738e6663566e4b223cc8a1be7e.tar.gz
gcc-df0159b7aad3b3738e6663566e4b223cc8a1be7e.tar.bz2
* tree-outof-ssa.c (num_nodes): Remove num_nodes.
From-SVN: r96186
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/tree-outof-ssa.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d73378d..10b0400 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -26,6 +26,8 @@
* tree-into-ssa.c (ann): Remove ann.
+ * tree-outof-ssa.c (num_nodes): Remove num_nodes.
+
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c
index 9e40698..6513971 100644
--- a/gcc/tree-outof-ssa.c
+++ b/gcc/tree-outof-ssa.c
@@ -488,7 +488,6 @@ elim_create (elim_graph g, int T)
static void
eliminate_phi (edge e, elim_graph g)
{
- int num_nodes = 0;
int x;
basic_block B = e->dest;
@@ -499,7 +498,6 @@ eliminate_phi (edge e, elim_graph g)
if (e->flags & EDGE_ABNORMAL)
return;
- num_nodes = num_var_partitions (g->map);
g->e = e;
eliminate_build (g, B);