summaryrefslogtreecommitdiff
path: root/gcc/gcov-dump.c
diff options
context:
space:
mode:
authornemet <nemet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-10 18:21:26 +0000
committernemet <nemet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-10 18:21:26 +0000
commit44d32dba0a0cfd8b4956af9ef221e28d6b476c0a (patch)
tree3389d899747391ab037e29ceca0a0b8da3391363 /gcc/gcov-dump.c
parentf9162d6cdf59a6a8fef6467f58406634e6aa7fee (diff)
downloadgcc-44d32dba0a0cfd8b4956af9ef221e28d6b476c0a.tar.gz
* gcov-dump.c (tag_summary): Only print summaries for the first
GCOV_COUNTERS_SUMMABLE counters. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134166 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcov-dump.c')
-rw-r--r--gcc/gcov-dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c
index 916d73ce698..ae8504669fb 100644
--- a/gcc/gcov-dump.c
+++ b/gcc/gcov-dump.c
@@ -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);