diff options
author | Nick Clifton <nickc@redhat.com> | 2012-06-27 13:03:47 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2012-06-27 13:03:47 +0000 |
commit | 4b3650e36c21f24daae8a218284c915cbdaa847a (patch) | |
tree | 08e010ce98ccd23c4875e5539932bbf7b70fb245 | |
parent | 195b4c507f3c0552ac78530513e4da5d227215c6 (diff) | |
download | gcc-4b3650e36c21f24daae8a218284c915cbdaa847a.zip gcc-4b3650e36c21f24daae8a218284c915cbdaa847a.tar.gz gcc-4b3650e36c21f24daae8a218284c915cbdaa847a.tar.bz2 |
rx.md (comparesi3_extend): Remove = modifier from input operand.
* config/rx/rx.md (comparesi3_extend): Remove = modifier from
input operand.
From-SVN: r189014
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rx/rx.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 82309f8..87cc23b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-06-27 Nick Clifton <nickc@redhat.com> + + * config/rx/rx.md (comparesi3_extend): Remove = modifier from + input operand. + 2012-06-27 Richard Guenther <rguenther@suse.de> PR middle-end/53676 diff --git a/gcc/config/rx/rx.md b/gcc/config/rx/rx.md index 26ae5ae..d6e748c 100644 --- a/gcc/config/rx/rx.md +++ b/gcc/config/rx/rx.md @@ -1868,7 +1868,7 @@ (define_insn "comparesi3_<extend_types:code><small_int_modes:mode>" [(set (reg:CC CC_REG) - (compare:CC (match_operand:SI 0 "register_operand" "=r") + (compare:CC (match_operand:SI 0 "register_operand" "r") (extend_types:SI (match_operand:small_int_modes 1 "rx_restricted_mem_operand" "Q"))))] "(optimize < 3 || optimize_size)" "cmp\t%<extend_types:letter>1, %0" |