From: Andreas Tobler Date: Sun, 11 Apr 2004 08:20:42 +0000 (+0200) Subject: bb-reorder.c (fix_crossing_conditional_branches): Fix bootstrap failure on solaris. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf22ce3c7f2137dcd3b74211fd48a2d98564ac23;p=gcc.git bb-reorder.c (fix_crossing_conditional_branches): Fix bootstrap failure on solaris. 2004-04-11 Andreas Tobler * bb-reorder.c (fix_crossing_conditional_branches): Fix bootstrap failure on solaris. Place ifdef HAVE_return around gen_ret call. * cfgrtl.c (force_nonfallthru_and_redirect): Remove ifdef HAVE_return and place it around the place where it is needed. From-SVN: r80594 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 839e6483e55..6c446a74f4c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2004-04-11 Andreas Tobler + + * bb-reorder.c (fix_crossing_conditional_branches): Fix bootstrap + failure on solaris. Place ifdef HAVE_return around gen_ret call. + * cfgrtl.c (force_nonfallthru_and_redirect): Remove ifdef + HAVE_return and place it around the place where it is needed. + 2004-04-11 Andrew Pinski * varasm.c (text_section): Use TEXT_SECTION_ASM_OP and diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index ae335c1d74b..022cb33eb2e 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1684,9 +1684,11 @@ fix_crossing_conditional_branches (void) (old_label), BB_END (new_bb)); } +#ifdef HAVE_return else if (GET_CODE (old_label) == RETURN) new_jump = emit_jump_insn_after (gen_return (), BB_END (new_bb)); +#endif else abort (); diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 2e09ba2055d..461eb34a6f7 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -57,11 +57,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "cfglayout.h" #include "expr.h" -/* Stubs in case we don't have a return insn. */ -#ifndef HAVE_return -#define HAVE_return 0 -#define gen_return() NULL_RTX -#endif /* The labels mentioned in non-jump rtl. Valid during find_basic_blocks. */ /* ??? Should probably be using LABEL_NUSES instead. It would take a @@ -1134,10 +1129,11 @@ force_nonfallthru_and_redirect (edge e, basic_block target) e->flags &= ~EDGE_FALLTHRU; if (target == EXIT_BLOCK_PTR) { - if (HAVE_return) +#ifdef HAVE_return emit_jump_insn_after (gen_return (), BB_END (jump_block)); - else +#else abort (); +#endif } else {