diff options
author | Jan Hubicka <jh@suse.cz> | 2003-04-18 01:33:05 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2003-04-17 23:33:05 +0000 |
commit | d101590bee35f4025ee7dc8c2032e4320e79a82c (patch) | |
tree | 23752dc94793eb5296a89023e2bd1815c4e0ce8c /gcc/gcov-dump.c | |
parent | 04c5580f371b08c0cccb05a520b69097512e3f62 (diff) | |
download | gcc-d101590bee35f4025ee7dc8c2032e4320e79a82c.zip gcc-d101590bee35f4025ee7dc8c2032e4320e79a82c.tar.gz gcc-d101590bee35f4025ee7dc8c2032e4320e79a82c.tar.bz2 |
gcov-dump.c (tag_summary): Remove max_sum
* gcov-dump.c (tag_summary): Remove max_sum
* gcov-io.h (gcov_summary, gcov_write_summary, gcov_read_summary): Kill
max_sum.
* libgcov.c (gcov_exit): Do one pass over the data. Make error message
more verbose.
From-SVN: r65758
Diffstat (limited to 'gcc/gcov-dump.c')
-rw-r--r-- | gcc/gcov-dump.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c index ba56fee..9b17d21 100644 --- a/gcc/gcov-dump.c +++ b/gcc/gcov-dump.c @@ -407,9 +407,6 @@ tag_summary (filename, tag, length) printf (", arc_max_one="); printf (HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT)summary.arc_max_one); - printf ("\n%s:\t\tmax_sum=", filename); - printf (HOST_WIDEST_INT_PRINT_DEC, - (HOST_WIDEST_INT)summary.arc_max_sum); printf (", sum_max="); printf (HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT)summary.arc_sum_max); |