From ce85812624573b7b2fca14eeec9e7d31cefc04fa Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Thu, 16 May 2013 12:52:18 +0000 Subject: [PATCH] Restore bootstrap on non-cc0 targets * reorg.c (link_cc0_insns): Wrap in #ifdef HAVE_cc0. From-SVN: r198971 --- gcc/ChangeLog | 4 ++++ gcc/reorg.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 15fe33b..8e92c44 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-05-16 Rainer Orth + + * reorg.c (link_cc0_insns): Wrap in #ifdef HAVE_cc0. + 2013-05-16 Greta Yorsh * config/arm/arm-protos.h (gen_movmem_ldrd_strd): New declaration. diff --git a/gcc/reorg.c b/gcc/reorg.c index 9422664..e601818a 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -157,6 +157,7 @@ skip_consecutive_labels (rtx label) return label; } +#ifdef HAVE_cc0 /* INSN uses CC0 and is being moved into a delay slot. Set up REG_CC_SETTER and REG_CC_USER notes so we can find it. */ @@ -171,6 +172,7 @@ link_cc0_insns (rtx insn) add_reg_note (user, REG_CC_SETTER, insn); add_reg_note (insn, REG_CC_USER, user); } +#endif /* Insns which have delay slots that have not yet been filled. */ -- 2.7.4