diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-12 20:50:01 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-12 20:50:01 +0000 |
commit | 2e70428c1fac7a91855605e42b92c0650835578b (patch) | |
tree | 359360ecaf1c5dfe032245956e3fb122d40f2edb /gcc/cfg.c | |
parent | f84e539c29fcab6effb6295e47f05220dc86f466 (diff) | |
download | gcc-2e70428c1fac7a91855605e42b92c0650835578b.tar.gz |
* basic-block.h (expunge_block): Declare.
* cfg.c (expunge_block): Remove static declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45569 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index 5ceff715063..ff59ef5ac7c 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -144,7 +144,6 @@ static int can_delete_note_p PARAMS ((rtx)); static int can_delete_label_p PARAMS ((rtx)); static void commit_one_edge_insertion PARAMS ((edge)); static bool try_redirect_by_replacing_jump PARAMS ((edge, basic_block)); -static void expunge_block PARAMS ((basic_block)); static rtx last_loop_beg_note PARAMS ((rtx)); static bool back_edge_of_syntactic_loop_p PARAMS ((basic_block, basic_block)); static basic_block force_nonfallthru_and_redirect PARAMS ((edge, basic_block)); @@ -439,7 +438,7 @@ create_basic_block (index, head, end) /* Remove block B from the basic block array and compact behind it. */ -static void +void expunge_block (b) basic_block b; { |