aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-loop.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-04-18 08:55:41 +0000
committerRichard Guenther <rguenther@suse.de>2012-04-18 08:55:41 +0000
commit403c7585f22f6d06765afc151a38d2dc6ecf465b (patch)
tree9450082e7078447f707234f42e62f4aacd729bcd /gcc/tree-ssa-loop.c
parentc3c489ed8291b16a390b062cf15ccca7c1fe47cb (diff)
2012-04-18 Richard Guenther <rguenther@suse.de>
* cfgloop.h (estimate_numbers_of_iterations_loop): Remove use_undefined_p parameter. * tree-flow.h (estimate_numbers_of_iterations): Likewise. * tree-ssa-loop-niter.c (estimate_numbers_of_iterations_loop): Likewise. (estimate_numbers_of_iterations): Likewise. (estimated_loop_iterations): Adjust. (max_loop_iterations): Likewise. (scev_probably_wraps_p): Likewise. * tree-ssa-loop.c (tree_ssa_loop_bounds): Likewise. * tree-vrp.c (adjust_range_with_scev): Use max_stmt_executions, not max_loop_iterations. (execute_vrp): Remove explicit number of iterations estimation. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@186562 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop.c')
-rw-r--r--gcc/tree-ssa-loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop.c b/gcc/tree-ssa-loop.c
index a91bf3919ad..3d650bfcbfd 100644
--- a/gcc/tree-ssa-loop.c
+++ b/gcc/tree-ssa-loop.c
@@ -420,7 +420,7 @@ tree_ssa_loop_bounds (void)
if (number_of_loops () <= 1)
return 0;
- estimate_numbers_of_iterations (true);
+ estimate_numbers_of_iterations ();
scev_reset ();
return 0;
}