diff options
author | Diego Novillo <dnovillo@redhat.com> | 2001-06-22 22:20:42 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2001-06-22 18:20:42 -0400 |
commit | 316dcdf6830c4b8c662035fce49096f9ac81ee24 (patch) | |
tree | 6a6c46aab4b02ff1686a4500b33664db8735565c /gcc/basic-block.h | |
parent | 1b28186a60548d3e4eb6db9cbe5c7bbae0bd47e3 (diff) | |
download | gcc-316dcdf6830c4b8c662035fce49096f9ac81ee24.zip gcc-316dcdf6830c4b8c662035fce49096f9ac81ee24.tar.gz gcc-316dcdf6830c4b8c662035fce49096f9ac81ee24.tar.bz2 |
basic-block.h (dump_edge_info): Declare.
2001-06-22 Diego Novillo <dnovillo@redhat.com>
* basic-block.h (dump_edge_info): Declare.
(clear_edges): Declare.
(mark_critical_edges): Declare.
* flow.c (dump_edge_info): Remove static declaration.
(clear_edges): Ditto.
(mark_critical_edges): Ditto.
(free_basic_block_vars): Only clear edges and free basic block
array if basic_block_info is not NULL.
* ssa.c (compute_dominance_frontiers): Remove static declaration.
* ssa.h (compute_dominance_frontiers): Declare.
From-SVN: r43518
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index c41ee32..515d222 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -290,6 +290,9 @@ extern int flow_delete_block PARAMS ((basic_block)); extern void merge_blocks_nomove PARAMS ((basic_block, basic_block)); extern void tidy_fallthru_edge PARAMS ((edge, basic_block, basic_block)); +extern void dump_edge_info PARAMS ((FILE *, edge, int)); +extern void clear_edges PARAMS ((void)); +extern void mark_critical_edges PARAMS ((void)); /* Structure to hold information for each natural loop. */ struct loop |