diff options
author | Martin Liska <mliska@suse.cz> | 2015-06-01 14:40:47 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2015-06-01 12:40:47 +0000 |
commit | 295e70472859075e8cc0c8b00ff1f13aac57a628 (patch) | |
tree | e4baafc4f2eb2a2db56240f8ada32cd5f00acd44 /gcc/df.h | |
parent | a78a26f11e2e95d4bb43f1782f891d8210d03e0d (diff) | |
download | gcc-295e70472859075e8cc0c8b00ff1f13aac57a628.zip gcc-295e70472859075e8cc0c8b00ff1f13aac57a628.tar.gz gcc-295e70472859075e8cc0c8b00ff1f13aac57a628.tar.bz2 |
Change use to type-based pool allocator in
* df-problems.c (df_chain_create):Use new type-based pool allocator.
(df_chain_unlink_1) Likewise.
(df_chain_unlink) Likewise.
(df_chain_remove_problem) Likewise.
(df_chain_alloc) Likewise.
(df_chain_free) Likewise.
* df.h (struct dataflow) Likewise.
From-SVN: r223953
Diffstat (limited to 'gcc/df.h')
-rw-r--r-- | gcc/df.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ struct dataflow unsigned int block_info_size; /* The pool to allocate the block_info from. */ - alloc_pool block_pool; + pool_allocator<df_link> *block_pool; /* The lr and live problems have their transfer functions recomputed only if necessary. This is possible for them because, the |