From 62869a1ca1ddb89e9cb5c808bfe678979e4090f0 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Tue, 18 Oct 2016 07:49:32 +0000 Subject: tree-ssa-propagate.h (substitute_and_fold): Adjust prototype. 2016-10-18 Richard Biener * tree-ssa-propagate.h (substitute_and_fold): Adjust prototype. * tree-ssa-propagate.c (ssa_prop_fini): Remove final BB_VISITED clearing. (substitute_and_fold_dom_walker): Adjust constructor. (substitute_and_fold_dom_walker::before_dom_children): Remove do_dce flag and handling (always true). (substitute_and_fold): Likewise. * tree-vrp.c (vrp_finalize): Adjust. (execute_early_vrp): Remove final BB_VISITED clearing. * tree-ssa-ccp.c (ccp_finalize): Adjust. * tree-ssa-copy.c (fini_copy_prop): Likewise. * ira.c (ira): Call clear_bb_flags. From-SVN: r241296 --- gcc/tree-ssa-copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-ssa-copy.c') diff --git a/gcc/tree-ssa-copy.c b/gcc/tree-ssa-copy.c index fcf4fa9..abc6205 100644 --- a/gcc/tree-ssa-copy.c +++ b/gcc/tree-ssa-copy.c @@ -550,7 +550,7 @@ fini_copy_prop (void) } } - bool changed = substitute_and_fold (get_value, NULL, true); + bool changed = substitute_and_fold (get_value, NULL); if (changed) { free_numbers_of_iterations_estimates (cfun); -- cgit v1.1