summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/pretty-print.h2
-rw-r--r--gcc/tree-pretty-print.c8
3 files changed, 13 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b4dac126968..b79a96441e8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2011-09-02 Richard Guenther <rguenther@suse.de>
+
+ * pretty-print.h (pp_unsigned_wide_integer): New.
+ * tree-pretty-print.c (dump_generic_node): Print unsigned
+ host-wide-int fitting INTEGER_CSTs with pp_unsigned_wide_integer.
+
2011-09-02 Richard Sandiford <richard.sandiford@linaro.org>
PR target/49987
diff --git a/gcc/pretty-print.h b/gcc/pretty-print.h
index ae1dadfe4a6..bb1d156d31d 100644
--- a/gcc/pretty-print.h
+++ b/gcc/pretty-print.h
@@ -276,6 +276,8 @@ struct pretty_print_info
} \
while (0)
#define pp_decimal_int(PP, I) pp_scalar (PP, "%d", I)
+#define pp_unsigned_wide_integer(PP, I) \
+ pp_scalar (PP, HOST_WIDE_INT_PRINT_UNSIGNED, (unsigned HOST_WIDE_INT) I)
#define pp_wide_integer(PP, I) \
pp_scalar (PP, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT) I)
#define pp_widest_integer(PP, I) \
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c
index 2c4b5bf7395..e30d60a365f 100644
--- a/gcc/tree-pretty-print.c
+++ b/gcc/tree-pretty-print.c
@@ -1002,7 +1002,11 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
pp_wide_integer (buffer, TREE_INT_CST_LOW (node));
pp_string (buffer, "B"); /* pseudo-unit */
}
- else if (! host_integerp (node, 0))
+ else if (host_integerp (node, 0))
+ pp_wide_integer (buffer, TREE_INT_CST_LOW (node));
+ else if (host_integerp (node, 1))
+ pp_unsigned_wide_integer (buffer, TREE_INT_CST_LOW (node));
+ else
{
tree val = node;
unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (val);
@@ -1021,8 +1025,6 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
(unsigned HOST_WIDE_INT) high, low);
pp_string (buffer, pp_buffer (buffer)->digit_buffer);
}
- else
- pp_wide_integer (buffer, TREE_INT_CST_LOW (node));
break;
case REAL_CST: