diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-16 12:52:18 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-16 12:52:18 +0000 |
commit | a98345a3fd92a222669640f91c536133b790a560 (patch) | |
tree | f74f695b47529166baee7b2bc60a1b4db815e143 /gcc/reorg.c | |
parent | ae51a965dc9b5c95f88207e0347344a57110f54d (diff) | |
download | gcc-a98345a3fd92a222669640f91c536133b790a560.tar.gz |
Restore bootstrap on non-cc0 targets
* reorg.c (link_cc0_insns): Wrap in #ifdef HAVE_cc0.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198971 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reorg.c')
-rw-r--r-- | gcc/reorg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c index 9422664a6fa..e601818a0d0 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. */ |