diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2015-04-09 16:37:14 +0200 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2015-04-09 16:37:14 +0200 |
commit | fb728653b626594d13ae0fbf78e33c108cf8a8da (patch) | |
tree | 83e86a358e9f7465258efedcaf1251c2adb750bf /gcc | |
parent | ca708025539dace762e23c1a5f97570a51020fc3 (diff) | |
download | gcc-fb728653b626594d13ae0fbf78e33c108cf8a8da.zip gcc-fb728653b626594d13ae0fbf78e33c108cf8a8da.tar.gz gcc-fb728653b626594d13ae0fbf78e33c108cf8a8da.tar.bz2 |
re PR rtl-optimization/65693 (ICE in assign_by_spills, at lra-assigns.c:1419)
PR rtl-optimization/65693
* combine.c (is_parallel_of_n_reg_sets): Move outside of
#ifndef HAVE_cc0.
From-SVN: r221951
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/combine.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 36e027a..4d1a189 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-04-09 Segher Boessenkool <segher@kernel.crashing.org> + + PR rtl-optimization/65693 + * combine.c (is_parallel_of_n_reg_sets): Move outside of + #ifndef HAVE_cc0. + 2015-04-09 Georg-Johann Lay <avr@gjlay.de> PR target/65296 diff --git a/gcc/combine.c b/gcc/combine.c index 6f4a8da..46cd6db 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. */ |