* tree-ssa.c (kill_redundant_phi_nodes): Remove local variable
var.
+ * tree-ssa-phiopt.c (tree_ssa_phiopt): Remove local variable
+ removed_phis.
+
2005-03-12 Geoffrey Keating <geoffk@apple.com>
* c-lex.c (c_lex_with_flags): Add parameter to call to
tree_ssa_phiopt (void)
{
basic_block bb;
- bool removed_phis = false;
/* Search every basic block for COND_EXPR we may be able to optimize
in reverse order so we can find more. */
|| value_replacement (bb, bb1, bb2, e1, e2, phi, arg0, arg1)
|| abs_replacement (bb, bb1, bb2, e1, e2, phi, arg0, arg1))
{
- /* We have done the replacement so we need to rebuild the
- cfg when this pass is complete. */
- removed_phis = true;
}
}
}