Commit 63d628b2 by Adam Nemet Committed by Adam Nemet

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
parent 6dd18eb1
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment