OSDN Git Service

* cfgrtl.c (force_nonfallthru_and_redirect): Make it static.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Nov 2004 23:20:22 +0000 (23:20 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Nov 2004 23:20:22 +0000 (23:20 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90088 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cfgrtl.c

index a1f10b1..1750358 100644 (file)
@@ -1,5 +1,9 @@
 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
index 17f7b75..3563574 100644 (file)
@@ -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;