diff options
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1044,15 +1044,14 @@ static hash_table<bb_copy_hasher> *bb_copy; /* And between loops and copies. */ static hash_table<bb_copy_hasher> *loop_copy; -static pool_allocator<htab_bb_copy_original_entry> *original_copy_bb_pool; +static object_allocator<htab_bb_copy_original_entry> *original_copy_bb_pool; /* Initialize the data structures to maintain mapping between blocks and its copies. */ void initialize_original_copy_tables (void) { - - original_copy_bb_pool = new pool_allocator<htab_bb_copy_original_entry> + original_copy_bb_pool = new object_allocator<htab_bb_copy_original_entry> ("original_copy", 10); bb_original = new hash_table<bb_copy_hasher> (10); bb_copy = new hash_table<bb_copy_hasher> (10); |