X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=gcc%2Fpretty-print.h;h=bb1d156d31dd91b0de20f76d473cf33b155d5e36;hp=ae1dadfe4a632c04d384d5645a6b159f9e05b5f1;hb=be63b39f37b95cdbf0e122b7491a98ed7bbfee5d;hpb=1ea9269b2a4e0073eaef480434e229af491ad327 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) \