gcov-dump.c (tag_summary): Only print summaries for the first GCOV_COUNTERS_SUMMABLE counters.
* gcov-dump.c (tag_summary): Only print summaries for the first GCOV_COUNTERS_SUMMABLE counters. From-SVN: r134166
This commit is contained in:
parent
6dd18eb1fe
commit
63d628b2fe
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-04-10 Adam Nemet <anemet@caviumnetworks.com>
|
||||
|
||||
* gcov-dump.c (tag_summary): Only print summaries for the first
|
||||
GCOV_COUNTERS_SUMMABLE counters.
|
||||
|
||||
2008-04-10 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.md (absneg): New code iterator.
|
||||
|
|
|
@ -420,7 +420,7 @@ tag_summary (const char *filename ATTRIBUTE_UNUSED,
|
|||
gcov_read_summary (&summary);
|
||||
printf (" checksum=0x%08x", summary.checksum);
|
||||
|
||||
for (ix = 0; ix != GCOV_COUNTERS; ix++)
|
||||
for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++)
|
||||
{
|
||||
printf ("\n");
|
||||
print_prefix (filename, 0, 0);
|
||||
|
|
Loading…
Add table
Reference in a new issue