diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2010-05-02 21:39:31 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2010-05-02 21:39:31 +0200 |
commit | 7c393241cf4e01cce7e893602a9f28daab7a7fa1 (patch) | |
tree | a5f6261b1925f6d14d321e8ad471d4850d8af7d8 /gcc/gcov-dump.c | |
parent | 52c307baffef3b8742fce4ae431359d89ac529b1 (diff) | |
download | gcc-7c393241cf4e01cce7e893602a9f28daab7a7fa1.zip gcc-7c393241cf4e01cce7e893602a9f28daab7a7fa1.tar.gz gcc-7c393241cf4e01cce7e893602a9f28daab7a7fa1.tar.bz2 |
vmsdbgout.c (ASM_OUTPUT_DEBUG_DATA1): Change format string placeholder from 0x%x to %#x.
* vmsdbgout.c (ASM_OUTPUT_DEBUG_DATA1): Change format string
placeholder from 0x%x to %#x.
(ASM_OUTPUT_DEBUG_DATA1): Ditto.
(ASM_OUTPUT_DEBUG_DATA4): Ditto.
(ASM_OUTPUT_DEBUG_DATA): Ditto.
(ASM_OUTPUT_DEBUG_ADDR_DATA): Ditto.
(ASM_OUTPUT_DEBUG_DATA8): Ditto.
* optc-gen.awk: Ditto.
* hwint.h (HOST_WIDE_INT_PRINT_DOUBLE_HEX): Ditto.
(HOST_WIDE_INT_PRINT_HEX): Ditto.
(HOST_WIDEST_INT_PRINT_HEX): Ditto.
(HOST_WIDEST_INT_PRINT_DOUBLE_HEX): Ditto.
* gcov-dump.c (tag_function): Ditto.
(tag_summary): Ditto.
From-SVN: r158978
Diffstat (limited to 'gcc/gcov-dump.c')
-rw-r--r-- | gcc/gcov-dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c index 8aa6368..6b06d95 100644 --- a/gcc/gcov-dump.c +++ b/gcc/gcov-dump.c @@ -267,7 +267,7 @@ tag_function (const char *filename ATTRIBUTE_UNUSED, unsigned long pos = gcov_position (); printf (" ident=%u", gcov_read_unsigned ()); - printf (", checksum=%#08x", gcov_read_unsigned ()); + printf (", checksum=0x%08x", gcov_read_unsigned ()); if (gcov_position () - pos < length) { @@ -418,7 +418,7 @@ tag_summary (const char *filename ATTRIBUTE_UNUSED, unsigned ix; gcov_read_summary (&summary); - printf (" checksum=%#08x", summary.checksum); + printf (" checksum=0x%08x", summary.checksum); for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++) { |