diff options
author | Andi Kleen <ak@linux.intel.com> | 2013-04-23 03:10:29 +0000 |
---|---|---|
committer | Andi Kleen <ak@gcc.gnu.org> | 2013-04-23 03:10:29 +0000 |
commit | 5366925908d82b07aaf6948cdf4c20eb41207896 (patch) | |
tree | c33f7469dc21b73527306136938d6f8d1a8ad50a /gcc/lto | |
parent | 1a0ad150a3e2fc16fe240810900d2b7bc1d0ec0d (diff) | |
download | gcc-5366925908d82b07aaf6948cdf4c20eb41207896.zip gcc-5366925908d82b07aaf6948cdf4c20eb41207896.tar.gz gcc-5366925908d82b07aaf6948cdf4c20eb41207896.tar.bz2 |
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 <ak@linux.intel.com>
* lto/lto.c (print_lto_report_1): Fix LTO report names.
From-SVN: r198174
Diffstat (limited to 'gcc/lto')
-rw-r--r-- | gcc/lto/lto.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |