From 5366925908d82b07aaf6948cdf4c20eb41207896 Mon Sep 17 00:00:00 2001 From: Andi Kleen Date: Tue, 23 Apr 2013 03:10:29 +0000 Subject: Fix lto report names Some of the hash tables in lto-report are misnamed in the report. Fix this up. gcc/: 2013-04-22 Andi Kleen * lto/lto.c (print_lto_report_1): Fix LTO report names. From-SVN: r198174 --- gcc/ChangeLog | 4 ++++ gcc/lto/lto.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 082dfc6..6349376 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2013-04-22 Andi Kleen + * lto/lto.c (print_lto_report_1): Fix LTO report names. + +2013-04-22 Andi Kleen + * lto/lto.c (print_lto_report_1): Declare early. (read_cgraph_and_symbols): Call print_lto_report_1 early. diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index 18af8c4..52442f9 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -3177,7 +3177,7 @@ print_lto_report_1 (void) else fprintf (stderr, "[%s] GIMPLE type table is empty\n", pfx); if (type_hash_cache) - fprintf (stderr, "[%s] GIMPLE type hash table: size %ld, %ld elements, " + fprintf (stderr, "[%s] GIMPLE type hash cache table: size %ld, %ld elements, " "%ld searches, %ld collisions (ratio: %f)\n", pfx, (long) htab_size (type_hash_cache), (long) htab_elements (type_hash_cache), @@ -3185,7 +3185,7 @@ print_lto_report_1 (void) (long) type_hash_cache->collisions, htab_collisions (type_hash_cache)); else - fprintf (stderr, "[%s] GIMPLE type hash table is empty\n", pfx); + fprintf (stderr, "[%s] GIMPLE type hash cache table is empty\n", pfx); print_gimple_types_stats (pfx); print_lto_report (pfx); -- cgit v1.1