diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-31 20:55:41 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-31 20:55:41 +0000 |
commit | 327a38c3c847413f53c0adedd0528218b3f8acc0 (patch) | |
tree | 01adf335c9a46cf27322677a09661de28c5417e9 /gcc/pretty-print.h | |
parent | a4f2c3026310eeb49381fd225a6f70506028b8d7 (diff) | |
download | gcc-327a38c3c847413f53c0adedd0528218b3f8acc0.tar.gz |
* pretty-print.h (pp_widest_integer): New macro.
* tree-pretty-print.c (dump_bb_header): Print BB frequencies and
counts.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102608 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/pretty-print.h')
-rw-r--r-- | gcc/pretty-print.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/pretty-print.h b/gcc/pretty-print.h index b587e600882..b2c6772b7c0 100644 --- a/gcc/pretty-print.h +++ b/gcc/pretty-print.h @@ -269,6 +269,8 @@ struct pretty_print_info #define pp_decimal_int(PP, I) pp_scalar (PP, "%d", 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) \ + pp_scalar (PP, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) I) #define pp_pointer(PP, P) pp_scalar (PP, "%p", P) #define pp_identifier(PP, ID) pp_string (PP, ID) |