summaryrefslogtreecommitdiff
path: root/gcc/lto-streamer-in.c
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-10-24 19:50:10 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-10-24 19:50:10 +0000
commit5de9d3edd3fb87520db0a0ecd247f64ed17d4a7e (patch)
treed6aa0255859e182cc4803056e6f5be3e322840fb /gcc/lto-streamer-in.c
parent7acd91bc8e4f55287f385de48490b09d12a2ec12 (diff)
downloadgcc-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/lto-streamer-in.c')
-rw-r--r--gcc/lto-streamer-in.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c
index a58c3446395..8975cd6dd70 100644
--- a/gcc/lto-streamer-in.c
+++ b/gcc/lto-streamer-in.c
@@ -702,7 +702,7 @@ input_cfg (struct lto_input_block *ib, struct function *fn,
for (i = 0; i < len; i++)
a[i] = streamer_read_hwi (ib);
- loop->nb_iterations_upper_bound = max_wide_int::from_array (a, len);
+ loop->nb_iterations_upper_bound = widest_int::from_array (a, len);
}
loop->any_estimate = streamer_read_hwi (ib);
if (loop->any_estimate)
@@ -714,7 +714,7 @@ input_cfg (struct lto_input_block *ib, struct function *fn,
for (i = 0; i < len; i++)
a[i] = streamer_read_hwi (ib);
- loop->nb_iterations_estimate = max_wide_int::from_array (a, len);
+ loop->nb_iterations_estimate = widest_int::from_array (a, len);
}
place_new_loop (fn, loop);