* combine.c (is_parallel_of_n_reg_sets)
authorAndreas Schwab <schwab@linux-m68k.org>
Fri, 5 Dec 2014 20:25:19 +0000 (20:25 +0000)
committerAndreas Schwab <schwab@gcc.gnu.org>
Fri, 5 Dec 2014 20:25:19 +0000 (20:25 +0000)
(can_split_parallel_of_n_reg_sets): Only define if !HAVE_cc0.

From-SVN: r218436

gcc/ChangeLog
gcc/combine.c

index 48e713b4ef264d3cc6b4504ba75dba73b1299970..9538737c7d78adf5498d16078084250ebbba7784 100644 (file)
@@ -1,3 +1,8 @@
+2014-12-05  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * combine.c (is_parallel_of_n_reg_sets)
+       (can_split_parallel_of_n_reg_sets): Only define if !HAVE_cc0.
+
 2014-12-05  Andrew Pinski  <apinski@cavium.com>
 
        * config/aarch64/aarch64-simd-builtins.def (bswap): Use CF2 rather
index e6deb419987398b6b20c89c52322822193f65684..39f9200913623e11983c605c9fcbd893bb370ed3 100644 (file)
@@ -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.