From 4214a50578bcf9023b8a0744a1e8ba95de7d2266 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 14 Aug 1992 18:40:37 -0400 Subject: [PATCH] (invert_exp, redirect_exp): No longer static. Clean up order of declarations at start of file and remove extraneous decls. From-SVN: r1842 --- gcc/jump.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/gcc/jump.c b/gcc/jump.c index cbef1859317..f99fbe8134c 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -104,18 +104,8 @@ int can_reach_end; static int cross_jump_death_matters = 0; static int duplicate_loop_exit_test (); -rtx delete_insn (); -int redirect_jump (); -static int redirect_exp (); void redirect_tablejump (); static int delete_labelref_insn (); -int invert_jump (); -static int invert_exp (); -int condjump_p (); -int simplejump_p (); - -extern rtx gen_jump (); - static void mark_jump_label (); void delete_jump (); static void delete_from_jump_chain (); @@ -123,6 +113,8 @@ static int tension_vector_labels (); static void find_cross_jump (); static void do_cross_jump (); static int jump_back_p (); + +extern rtx gen_jump (); /* Delete no-op jumps and optimize jumps to jumps and jumps around jumps. @@ -3150,7 +3142,7 @@ invert_jump (jump, nlabel) Return 1 if we can do so, 0 if we cannot find a way to do so that matches a pattern. */ -static int +int invert_exp (x, insn) rtx x; rtx insn; @@ -3298,7 +3290,7 @@ delete_from_jump_chain (jump) Return 0 if we found a change we would like to make but it is invalid. Otherwise, return 1. */ -static int +int redirect_exp (loc, olabel, nlabel, insn) rtx *loc; rtx olabel, nlabel; -- 2.30.2