summaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorsegher <segher@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-09 14:37:14 +0000
committersegher <segher@138bc75d-0d04-0410-961f-82ee72b054a4>2015-04-09 14:37:14 +0000
commit35206d02cfeb6c9c64ebe6d7d57d01e84b0f2d9a (patch)
tree83e86a358e9f7465258efedcaf1251c2adb750bf /gcc/combine.c
parent2c8df1f3733844f313dc855d93f746466384a526 (diff)
downloadgcc-35206d02cfeb6c9c64ebe6d7d57d01e84b0f2d9a.tar.gz
PR rtl-optimization/65693
* combine.c (is_parallel_of_n_reg_sets): Move outside of #ifndef HAVE_cc0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@221951 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 6f4a8da9761..46cd6db62ad 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -2492,7 +2492,6 @@ update_cfg_for_uncondjump (rtx_insn *insn)
}
}
-#ifndef HAVE_cc0
/* Return whether PAT is a PARALLEL of exactly N register SETs followed
by an arbitrary number of CLOBBERs. */
static bool
@@ -2517,6 +2516,7 @@ is_parallel_of_n_reg_sets (rtx pat, int n)
return true;
}
+#ifndef HAVE_cc0
/* Return whether INSN, a PARALLEL of N register SETs (and maybe some
CLOBBERs), can be split into individual SETs in that order, without
changing semantics. */