aboutsummaryrefslogtreecommitdiff
path: root/gcc/pretty-print.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2011-09-02 13:52:12 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2011-09-02 13:52:12 +0000
commitaa547a51dab42285a259b77d45bec65fa3f82646 (patch)
tree7007bd6b3ab6166761b3605ffacf2a7b73056c9e /gcc/pretty-print.h
parent6aa67e7b9925ea6373f186cae8e7c1461ea54ee3 (diff)
downloadgcc-aa547a51dab42285a259b77d45bec65fa3f82646.zip
gcc-aa547a51dab42285a259b77d45bec65fa3f82646.tar.gz
gcc-aa547a51dab42285a259b77d45bec65fa3f82646.tar.bz2
pretty-print.h (pp_unsigned_wide_integer): New.
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. From-SVN: r178479
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 ae1dadf..bb1d156 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) \