mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 16:51:13 +08:00
tree-ssa-phiopt.c (tree_ssa_phiopt): Remove local variable removed_phis.
* tree-ssa-phiopt.c (tree_ssa_phiopt): Remove local variable removed_phis. From-SVN: r96335
This commit is contained in:
parent
84f464e53c
commit
a1c7f47157
@ -3,6 +3,9 @@
|
||||
* 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
|
||||
|
@ -110,7 +110,6 @@ static void
|
||||
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. */
|
||||
@ -191,9 +190,6 @@ tree_ssa_phiopt (void)
|
||||
|| 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user