diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-24 19:50:10 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-24 19:50:10 +0000 |
commit | 5de9d3edd3fb87520db0a0ecd247f64ed17d4a7e (patch) | |
tree | d6aa0255859e182cc4803056e6f5be3e322840fb /gcc/cfgloop.c | |
parent | 7acd91bc8e4f55287f385de48490b09d12a2ec12 (diff) | |
download | gcc-5de9d3edd3fb87520db0a0ecd247f64ed17d4a7e.tar.gz |
Rename max_wide_int to widest_int, addr_wide_int to offset_int,
wi::address to wi::to_offset and wi::extend to wi::to_widest.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@204036 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgloop.c')
-rw-r--r-- | gcc/cfgloop.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index 18e0f52655c..a894793b2f6 100644 --- a/gcc/cfgloop.c +++ b/gcc/cfgloop.c @@ -1788,7 +1788,7 @@ get_loop_location (struct loop *loop) I_BOUND times. */ void -record_niter_bound (struct loop *loop, const max_wide_int &i_bound, +record_niter_bound (struct loop *loop, const widest_int &i_bound, bool realistic, bool upper) { /* Update the bounds only when there is no previous estimation, or when the @@ -1824,7 +1824,7 @@ record_niter_bound (struct loop *loop, const max_wide_int &i_bound, HOST_WIDE_INT get_estimated_loop_iterations_int (struct loop *loop) { - max_wide_int nit; + widest_int nit; HOST_WIDE_INT hwi_nit; if (!get_estimated_loop_iterations (loop, &nit)) @@ -1861,7 +1861,7 @@ max_stmt_executions_int (struct loop *loop) returns true. */ bool -get_estimated_loop_iterations (struct loop *loop, max_wide_int *nit) +get_estimated_loop_iterations (struct loop *loop, widest_int *nit) { /* Even if the bound is not recorded, possibly we can derrive one from profile. */ @@ -1885,7 +1885,7 @@ get_estimated_loop_iterations (struct loop *loop, max_wide_int *nit) false, otherwise returns true. */ bool -get_max_loop_iterations (struct loop *loop, max_wide_int *nit) +get_max_loop_iterations (struct loop *loop, widest_int *nit) { if (!loop->any_upper_bound) return false; @@ -1901,7 +1901,7 @@ get_max_loop_iterations (struct loop *loop, max_wide_int *nit) HOST_WIDE_INT get_max_loop_iterations_int (struct loop *loop) { - max_wide_int nit; + widest_int nit; HOST_WIDE_INT hwi_nit; if (!get_max_loop_iterations (loop, &nit)) |