aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2014-12-05 20:25:19 +0000
committerAndreas Schwab <schwab@gcc.gnu.org>2014-12-05 20:25:19 +0000
commit4b97b9f771161b0096bb5f120ccd64b084148d6b (patch)
tree487da2576602c508b017c6e40256043591d7b435 /gcc/combine.c
parent7eb2bd57189fdcadc28b6df963d33b82178b4585 (diff)
downloadgcc-4b97b9f771161b0096bb5f120ccd64b084148d6b.zip
gcc-4b97b9f771161b0096bb5f120ccd64b084148d6b.tar.gz
gcc-4b97b9f771161b0096bb5f120ccd64b084148d6b.tar.bz2
* combine.c (is_parallel_of_n_reg_sets)
(can_split_parallel_of_n_reg_sets): Only define if !HAVE_cc0. From-SVN: r218436
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index e6deb41..39f9200 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -2461,6 +2461,7 @@ update_cfg_for_uncondjump (rtx_insn *insn)
}
}
+#ifndef HAVE_cc0
/* Return whether INSN is a PARALLEL of exactly N register SETs followed
by an arbitrary number of CLOBBERs. */
static bool
@@ -2513,6 +2514,7 @@ can_split_parallel_of_n_reg_sets (rtx_insn *insn, int n)
return true;
}
+#endif
/* Try to combine the insns I0, I1 and I2 into I3.
Here I0, I1 and I2 appear earlier than I3.