diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-09 11:34:38 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-09 11:34:38 +0000 |
commit | 3394e6ffa88d94e1b21ad41922aa41f947608b05 (patch) | |
tree | 7992323632ddd0d83bc23b86b3e9558c8237d0e5 /gcc/tree-outof-ssa.c | |
parent | 6f6d5e4ce719e0c8570829119f72d7f8419b36d4 (diff) | |
download | gcc-3394e6ffa88d94e1b21ad41922aa41f947608b05.tar.gz |
* tree-outof-ssa.c (num_nodes): Remove num_nodes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96186 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index 9e40698a84f..651397126d8 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); |