diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-22 22:20:42 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-22 22:20:42 +0000 |
commit | bdd4d9fce513d45ba56bab83008ae324f120ac7c (patch) | |
tree | 6a6c46aab4b02ff1686a4500b33664db8735565c /gcc/ssa.h | |
parent | 8027d38a60e6943dc925c7625dc9aa0468d84b81 (diff) | |
download | gcc-bdd4d9fce513d45ba56bab83008ae324f120ac7c.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43518 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ssa.h')
-rw-r--r-- | gcc/ssa.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ssa.h b/gcc/ssa.h index 5095319e997..5eb97855b70 100644 --- a/gcc/ssa.h +++ b/gcc/ssa.h @@ -27,6 +27,7 @@ typedef int (*successor_phi_fn) PARAMS ((rtx, int, int, void *)); extern int for_each_successor_phi PARAMS ((basic_block bb, successor_phi_fn, void *)); +void compute_dominance_frontiers PARAMS ((sbitmap *frontiers, int *idom)); extern int remove_phi_alternative PARAMS ((rtx, basic_block)); |