Commit 58261bc2 by Kazu Hirata Committed by Kazu Hirata

tree-ssa-phiopt.c (tree_ssa_phiopt, [...]): Remove unused variable i.

	* tree-ssa-phiopt.c (tree_ssa_phiopt,
	replace_phi_edge_with_variable): Remove unused variable i.

From-SVN: r96083
parent 2863ddd2
...@@ -12,6 +12,9 @@ ...@@ -12,6 +12,9 @@
* modulo-sched.c: Remove unused prototype * modulo-sched.c: Remove unused prototype
set_row_column_for_ps. set_row_column_for_ps.
* tree-ssa-phiopt.c (tree_ssa_phiopt,
replace_phi_edge_with_variable): Remove unused variable i.
2005-03-07 Per Bothner <per@bothner.com> 2005-03-07 Per Bothner <per@bothner.com>
* tree.h (DECL_IS_BUILTIN): Reverted my patch from earlier today. * tree.h (DECL_IS_BUILTIN): Reverted my patch from earlier today.
......
...@@ -178,7 +178,6 @@ tree_ssa_phiopt (void) ...@@ -178,7 +178,6 @@ tree_ssa_phiopt (void)
if (phi && PHI_CHAIN (phi) == NULL) if (phi && PHI_CHAIN (phi) == NULL)
{ {
tree arg0 = NULL, arg1 = NULL; tree arg0 = NULL, arg1 = NULL;
int i;
arg0 = PHI_ARG_DEF_TREE (phi, e1->dest_idx); arg0 = PHI_ARG_DEF_TREE (phi, e1->dest_idx);
arg1 = PHI_ARG_DEF_TREE (phi, e2->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, ...@@ -229,7 +228,6 @@ replace_phi_edge_with_variable (basic_block cond_block, basic_block bb,
edge e, tree phi, tree new) edge e, tree phi, tree new)
{ {
basic_block block_to_remove; basic_block block_to_remove;
int i;
block_stmt_iterator bsi; block_stmt_iterator bsi;
/* Change the PHI argument to new. */ /* Change the PHI argument to new. */
......
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