summaryrefslogtreecommitdiff
path: root/gcc/cfgrtl.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-04 23:20:22 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-04 23:20:22 +0000
commit109c6afade6ada573ae847f175b1f52ef999111b (patch)
tree821713abda3c167afe16b2148516c5b7eaa118ff /gcc/cfgrtl.c
parentc626df3dde36468ebfb90f0d72a57b18dd90a26e (diff)
downloadgcc-109c6afade6ada573ae847f175b1f52ef999111b.tar.gz
* cfgrtl.c (force_nonfallthru_and_redirect): Make it static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90088 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r--gcc/cfgrtl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c
index 17f7b75d425..3563574bdeb 100644
--- a/gcc/cfgrtl.c
+++ b/gcc/cfgrtl.c
@@ -69,7 +69,6 @@ static int can_delete_label_p (rtx);
static void commit_one_edge_insertion (edge, int);
static rtx last_loop_beg_note (rtx);
static bool back_edge_of_syntactic_loop_p (basic_block, basic_block);
-basic_block force_nonfallthru_and_redirect (edge, basic_block);
static basic_block rtl_split_edge (edge);
static bool rtl_move_block_after (basic_block, basic_block);
static int rtl_verify_flow_info (void);
@@ -986,7 +985,7 @@ rtl_redirect_edge_and_branch (edge e, basic_block target)
/* Like force_nonfallthru below, but additionally performs redirection
Used by redirect_edge_and_branch_force. */
-basic_block
+static basic_block
force_nonfallthru_and_redirect (edge e, basic_block target)
{
basic_block jump_block, new_bb = NULL, src = e->src;