diff options
author | marxin <marxin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-16 13:24:54 +0000 |
---|---|---|
committer | marxin <marxin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-16 13:24:54 +0000 |
commit | f34a836c57573eaceecd4602beb73b370d55c2a8 (patch) | |
tree | 6c0e87d0db22d0030a590873fd2f9392ab7b7cfb /gcc/bitmap.c | |
parent | f0592840091cfeb63c2927db06c3043147733dca (diff) | |
download | gcc-f34a836c57573eaceecd4602beb73b370d55c2a8.tar.gz |
Fallout for new memory statistics infrastructure.
* bitmap.c (dump_bitmap_statistics): Fix GNU coding style.
* hash-table.c (void dump_hash_table_loc_statistics): Add missing
guard.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224518 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index 733c76727cd..bafb4cc91c9 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -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); |