Fix lto report names
authorAndi Kleen <ak@linux.intel.com>
Tue, 23 Apr 2013 03:10:29 +0000 (03:10 +0000)
committerAndi Kleen <ak@gcc.gnu.org>
Tue, 23 Apr 2013 03:10:29 +0000 (03:10 +0000)
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

gcc/ChangeLog
gcc/lto/lto.c

index 082dfc646050124c07ece4f34ef00e679b0e4bdf..6349376789381affc697910d1c99821e02a7f3fa 100644 (file)
@@ -1,3 +1,7 @@
+2013-04-22  Andi Kleen  <ak@linux.intel.com>
+
+       * lto/lto.c (print_lto_report_1): Fix LTO report names.
+
 2013-04-22  Andi Kleen  <ak@linux.intel.com>
 
        * lto/lto.c (print_lto_report_1): Declare early.
index 18af8c462175201d8047749885fef32159a92f11..52442f93d49cca24fb6fa845ed519b269f075f7d 100644 (file)
@@ -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);