diff options
Diffstat (limited to 'gcc/alloc-pool.c')
-rw-r--r-- | gcc/alloc-pool.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/alloc-pool.c b/gcc/alloc-pool.c index 81909d8..e34acdb 100644 --- a/gcc/alloc-pool.c +++ b/gcc/alloc-pool.c @@ -91,7 +91,9 @@ static struct alloc_pool_descriptor * allocate_pool_descriptor (const char *name) { if (!alloc_pool_hash) - alloc_pool_hash = new hash_map<const char *, alloc_pool_descriptor> (10); + alloc_pool_hash = new hash_map<const char *, alloc_pool_descriptor> (10, + false, + false); return &alloc_pool_hash->get_or_insert (name); } |