diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2010-08-10 14:31:52 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2010-08-10 14:31:52 +0000 |
commit | a398224a884b8cdde4cf59c9b8f7045936c3cb82 (patch) | |
tree | 301b5f27e78b7c244b905f5001865ee219d11425 /gcc/basic-block.h | |
parent | cefce34c6701df7ddd07ece4874465f9049b812c (diff) | |
download | gcc-a398224a884b8cdde4cf59c9b8f7045936c3cb82.zip gcc-a398224a884b8cdde4cf59c9b8f7045936c3cb82.tar.gz gcc-a398224a884b8cdde4cf59c9b8f7045936c3cb82.tar.bz2 |
basic-block.h (alloc_aux_for_block, [...]): Delete.
* basic-block.h (alloc_aux_for_block, alloc_aux_for_edge): Delete.
* cfg.c (alloc_aux_for_block, alloc_aux_for_edge): Make static.
(alloc_aux_for_blocks, clear_aux_for_blocks): Use FOR_ALL_BB.
From-SVN: r163066
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 1bf192d..692ebe6 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -783,11 +783,9 @@ extern void link_block (basic_block, basic_block); extern void unlink_block (basic_block); extern void compact_blocks (void); extern basic_block alloc_block (void); -extern void alloc_aux_for_block (basic_block, int); extern void alloc_aux_for_blocks (int); extern void clear_aux_for_blocks (void); extern void free_aux_for_blocks (void); -extern void alloc_aux_for_edge (edge, int); extern void alloc_aux_for_edges (int); extern void clear_aux_for_edges (void); extern void free_aux_for_edges (void); |