diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-26 07:49:34 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-26 07:49:34 +0000 |
commit | 82f7392b2d438610b8c96fa4025129d0d15171f2 (patch) | |
tree | 217b3b458beea6cff0af2f1de2339e47d5bc476d /gcc/basic-block.h | |
parent | 1eb054eaa43b5a80b0ef917a2c87296e1273f6d1 (diff) | |
download | gcc-82f7392b2d438610b8c96fa4025129d0d15171f2.tar.gz |
* cfg.c (clear_aux_for_blocks): Split out of ...
(free_aux_for_blocks): here.
(clear_aux_for_edges): Split from ...
(free_aux_for_edges): here.
* basic-block.h: Declare them.
* lcm.c (compute_antinout_edge): Use them.
(compute_laterin, compute_available, compute_nearerout): Likewise.
(optimize_mode_switching): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46534 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index cca96a3b747..6430230caaa 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -649,9 +649,11 @@ extern void flow_edge_list_print PARAMS ((const char *, const edge *, int, FILE *)); extern void alloc_aux_for_block PARAMS ((basic_block, int)); extern void alloc_aux_for_blocks PARAMS ((int)); +extern void clear_aux_for_blocks PARAMS ((void)); extern void free_aux_for_blocks PARAMS ((void)); extern void alloc_aux_for_edge PARAMS ((edge, int)); extern void alloc_aux_for_edges PARAMS ((int)); +extern void clear_aux_for_edges PARAMS ((void)); extern void free_aux_for_edges PARAMS ((void)); /* This function is always defined so it can be called from the |