diff options
author | Nick Clifton <nickc@redhat.com> | 2012-05-10 13:40:20 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2012-05-10 13:40:20 +0000 |
commit | b5ba5188a546443cf3a6ce3b1306c54265ddf675 (patch) | |
tree | 6b4d2e24dd646949488d9a116fe334558b70a8f3 | |
parent | 8244f25237c68071a0dd992367fa2f4509b010e6 (diff) | |
download | gcc-b5ba5188a546443cf3a6ce3b1306c54265ddf675.zip gcc-b5ba5188a546443cf3a6ce3b1306c54265ddf675.tar.gz gcc-b5ba5188a546443cf3a6ce3b1306c54265ddf675.tar.bz2 |
re PR target/53120 (ICE exposing strict_low_part / in/out operand thinko -fno-tree-sra)
PR target/53120
* config/m32c/bitops.md (bset_qi): Change operand 2 from having
a "0" constraint to being a (match_dup 0).
From-SVN: r187368
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/m32c/bitops.md | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8da7a7f..bd51a3c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-05-10 Nick Clifton <nickc@redhat.com> + + PR target/53120 + * config/m32c/bitops.md (bset_qi): Change operand 2 from having + a "0" constraint to being a (match_dup 0). + 2012-05-10 Richard Guenther <rguenther@suse.de> * stor-layout.c (byte_from_pos): Amend comment. diff --git a/gcc/config/m32c/bitops.md b/gcc/config/m32c/bitops.md index 3c8e8427..060362d 100644 --- a/gcc/config/m32c/bitops.md +++ b/gcc/config/m32c/bitops.md @@ -43,11 +43,11 @@ [(set (match_operand:QI 0 "memsym_operand" "+Si") (ior:QI (subreg:QI (ashift:HI (const_int 1) (subreg:QI (match_operand:HI 1 "a_qi_operand" "Raa") 0)) 0) - (match_operand:QI 2 "memsym_operand" "0")))] + (match_dup 0)))] "TARGET_A16" "bset\t%0[%1]" [(set_attr "flags" "n")] - ) + ) (define_insn "bset_hi" [(set (zero_extract:HI (match_operand:QI 0 "memsym_operand" "+Si") |