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/gimple-pretty-print.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/gimple-pretty-print.c')
-rw-r--r-- | gcc/gimple-pretty-print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-pretty-print.c b/gcc/gimple-pretty-print.c index fb333122227..a45dd535d95 100644 --- a/gcc/gimple-pretty-print.c +++ b/gcc/gimple-pretty-print.c @@ -1728,7 +1728,7 @@ dump_ssaname_info (pretty_printer *buffer, tree node, int spc) if (!POINTER_TYPE_P (TREE_TYPE (node)) && SSA_NAME_RANGE_INFO (node)) { - max_wide_int min, max; + widest_int min, max; value_range_type range_type = get_range_info (node, &min, &max); if (range_type == VR_VARYING) |