diff options
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 6b06d95..8aa6368 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=0x%08x", gcov_read_unsigned ()); + printf (", checksum=%#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=0x%08x", summary.checksum); + printf (" checksum=%#08x", summary.checksum); for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++) { |