summaryrefslogtreecommitdiff
path: root/gcc/gimple-pretty-print.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/gimple-pretty-print.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/gimple-pretty-print.c')
-rw-r--r--gcc/gimple-pretty-print.c2
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)