diff options
author | Richard Guenther <rguenther@suse.de> | 2012-04-18 08:55:41 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-04-18 08:55:41 +0000 |
commit | 421e608215243159a52fcaa35b3d88b04a95488d (patch) | |
tree | 9450082e7078447f707234f42e62f4aacd729bcd /gcc/cfgloop.h | |
parent | dcc186d607f8fc8ce3984ab6ae59997dbf2f3d31 (diff) | |
download | gcc-421e608215243159a52fcaa35b3d88b04a95488d.zip gcc-421e608215243159a52fcaa35b3d88b04a95488d.tar.gz gcc-421e608215243159a52fcaa35b3d88b04a95488d.tar.bz2 |
cfgloop.h (estimate_numbers_of_iterations_loop): Remove use_undefined_p parameter.
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.
From-SVN: r186562
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r-- | gcc/cfgloop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index 82c8881..14cc8e8 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -278,7 +278,7 @@ gcov_type expected_loop_iterations_unbounded (const struct loop *); extern unsigned expected_loop_iterations (const struct loop *); extern rtx doloop_condition_get (rtx); -void estimate_numbers_of_iterations_loop (struct loop *, bool); +void estimate_numbers_of_iterations_loop (struct loop *); bool estimated_loop_iterations (struct loop *, double_int *); bool max_loop_iterations (struct loop *, double_int *); HOST_WIDE_INT estimated_loop_iterations_int (struct loop *); |