diff options
author | marxin <marxin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-10 07:57:34 +0000 |
---|---|---|
committer | marxin <marxin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-10 07:57:34 +0000 |
commit | a80feb6c5fce7e1949e5ef4c67abd5d255a00514 (patch) | |
tree | 2c5a813f6081fa75e5c459fbf46f682f864e756b /gcc/hash-set.h | |
parent | 95f1e0d1504347f280a4bcd1effbd9fd23871a01 (diff) | |
download | gcc-a80feb6c5fce7e1949e5ef4c67abd5d255a00514.tar.gz |
Fix BITMAP identifier clash.
PR bootstrap/66471
* mem-stats-traits.h (enum mem_alloc_origin): Add _ORIGIN suffix for
all enum values in mem_alloc_origin.
* alloc-pool.c (dump_alloc_pool_statistics): Use newly changed enum
name.
* alloc-pool.h (pool_allocator::pool_allocator): Likewise.
* bitmap.c (bitmap_register): Likewise.
(dump_bitmap_statistics): Likewise.
* ggc-common.c (dump_ggc_loc_statistics): Likewise.
(ggc_record_overhead): Likewise.
* hash-map.h: Likewise.
* hash-set.h: Likewise.
* hash-table.c (void dump_hash_table_loc_statistics): Likewise.
* hash-table.h: Likewise.
* vec.c (vec_prefix::register_overhead): Likewise.
(vec_prefix::release_overhead): Likewise.
(dump_vec_loc_statistics): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224315 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hash-set.h')
-rw-r--r-- | gcc/hash-set.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hash-set.h b/gcc/hash-set.h index af91e315c2c..3ec0b1591d1 100644 --- a/gcc/hash-set.h +++ b/gcc/hash-set.h @@ -179,7 +179,7 @@ class hash_set public: explicit hash_set (size_t n = 13, bool ggc = false CXX_MEM_STAT_INFO) - : m_table (n, ggc, true, HASH_SET PASS_MEM_STAT) {} + : m_table (n, ggc, true, HASH_SET_ORIGIN PASS_MEM_STAT) {} /* Create a hash_set in gc memory with space for at least n elements. */ |