diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-08 03:10:20 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-08 03:10:20 +0000 |
commit | 6ec283975962973a954c7cd06b0d9f2edc3c1160 (patch) | |
tree | 270b0084502487aa1ff721bfe1bc6c78651997f1 /gcc/tree-ssa-phiopt.c | |
parent | 0c5481d9848772bb9bf48b5a2b7d62264d696a20 (diff) | |
download | gcc-6ec283975962973a954c7cd06b0d9f2edc3c1160.tar.gz |
* tree-ssa-phiopt.c (tree_ssa_phiopt,
replace_phi_edge_with_variable): Remove unused variable i.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96083 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-phiopt.c')
-rw-r--r-- | gcc/tree-ssa-phiopt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index 25babaecae4..048211b0dfe 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -178,7 +178,6 @@ tree_ssa_phiopt (void) if (phi && PHI_CHAIN (phi) == NULL) { tree arg0 = NULL, arg1 = NULL; - int i; arg0 = PHI_ARG_DEF_TREE (phi, e1->dest_idx); arg1 = PHI_ARG_DEF_TREE (phi, e2->dest_idx); @@ -229,7 +228,6 @@ replace_phi_edge_with_variable (basic_block cond_block, basic_block bb, edge e, tree phi, tree new) { basic_block block_to_remove; - int i; block_stmt_iterator bsi; /* Change the PHI argument to new. */ |