Commit 9167e1c0 by Kazu Hirata Committed by Kazu Hirata

* cfgrtl.c (force_nonfallthru_and_redirect): Make it static.

From-SVN: r90088
parent 54e62799
2004-11-04 Kazu Hirata <kazu@cs.umass.edu>
* cfgrtl.c (force_nonfallthru_and_redirect): Make it static.
2004-11-04 Kazu Hirata <kazu@cs.umass.edu>
* builtins.c (expand_builtin_return_addr,
expand_builtin_longjmp, expand_builtin_trap): Make them static.
* expr.h: Remove the prototypes for expand_builtin_longjmp and
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment