Fallout for new memory statistics infrastructure.
authorMartin Liska <mliska@suse.cz>
Tue, 16 Jun 2015 13:24:54 +0000 (15:24 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Tue, 16 Jun 2015 13:24:54 +0000 (13:24 +0000)
        * bitmap.c (dump_bitmap_statistics): Fix GNU coding style.
* hash-table.c (void dump_hash_table_loc_statistics): Add missing
guard.

From-SVN: r224518

gcc/ChangeLog
gcc/bitmap.c
gcc/hash-table.c

index ba5f85404a345570bdf7cefe8be6bbc38416c6f1..d15ba870c6600a4d08232d17110a927765937f5f 100644 (file)
@@ -1,3 +1,9 @@
+2015-06-16  Martin Liska  <mliska@suse.cz>
+
+       * bitmap.c (dump_bitmap_statistics): Fix GNU coding style.
+       * hash-table.c (void dump_hash_table_loc_statistics): Add missing
+       guard.
+
 2015-06-16  Richard Biener  <rguenther@suse.de>
 
        * tree-vect-stmts.c (vectorizable_store): Adjust.
index 733c76727cddc3eb89d0a126151a75017f146a10..bafb4cc91c9d11f63373ce39c77e582721b74a74 100644 (file)
@@ -2074,7 +2074,7 @@ bitmap_print (FILE *file, const_bitmap head, const char *prefix,
 void
 dump_bitmap_statistics (void)
 {
-  if (! GATHER_STATISTICS)
+  if (!GATHER_STATISTICS)
     return;
 
   bitmap_mem_desc.dump (BITMAP_ORIGIN);
index a42b884189d8abd9a5e3e69194ed73828f098bc9..1ae986eeaea3e5129f171c792e4a2fd341c70085 100644 (file)
@@ -103,6 +103,9 @@ mem_alloc_description<mem_usage> hash_table_usage;
 /* Support function for statistics.  */
 void dump_hash_table_loc_statistics (void)
 {
+  if (!GATHER_STATISTICS)
+    return;
+
   for (unsigned i = HASH_TABLE_ORIGIN; i <= HASH_SET_ORIGIN; i++)
     {
       mem_alloc_origin origin = (mem_alloc_origin) i;