summaryrefslogtreecommitdiff
path: root/gcc/pretty-print.h
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2011-09-02 13:52:12 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2011-09-02 13:52:12 +0000
commitd066d69aa5fa551244d8e2aa3479e3404480721a (patch)
tree7007bd6b3ab6166761b3605ffacf2a7b73056c9e /gcc/pretty-print.h
parent7afab8988db4e3705689ee04b5098a16463e30ba (diff)
downloadgcc-d066d69aa5fa551244d8e2aa3479e3404480721a.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178479 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/pretty-print.h')
-rw-r--r--gcc/pretty-print.h2
1 files changed, 2 insertions, 0 deletions
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) \