diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-05-28 19:49:18 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-05-28 19:49:18 +0000 |
commit | 73f793e3bb4e0a2bd04536f8bbc861c34cfec945 (patch) | |
tree | 18194c4ebc03529b7414e609111af0e8e670d580 /gcc/config/alpha/alpha.md | |
parent | 5a7555ab101f5796bc51f9175552d7c77f79754b (diff) | |
download | gcc-73f793e3bb4e0a2bd04536f8bbc861c34cfec945.zip gcc-73f793e3bb4e0a2bd04536f8bbc861c34cfec945.tar.gz gcc-73f793e3bb4e0a2bd04536f8bbc861c34cfec945.tar.bz2 |
md.texi: Document that the % constraint character must be at the beginning of the string.
gcc/
* doc/md.texi: Document that the % constraint character must
be at the beginning of the string.
* genoutput.c (validate_insn_alternatives): Check that '=',
'+' and '%' only appear at the beginning of a constraint.
* ira.c (commutative_constraint_p): Delete.
(ira_get_dup_out_num): Expect the '%' commutativity marker to be
at the start of the string.
* config/alpha/alpha.md (*movmemdi_1, *clrmemdi_1): Remove
duplicate '='s.
* config/arm/neon.md (bicdi3_neon): Likewise.
* config/iq2000/iq2000.md (addsi3_internal, subsi3_internal, sgt_si)
(slt_si, sltu_si): Likewise.
* config/vax/vax.md (sbcdi3): Likewise.
* config/h8300/h8300.md (*cmpstz): Remove duplicate '+'.
* config/arc/arc.md (mulsi_600, mulsidi_600, umulsidi_600)
(mul64): Move '%' to beginning of constraint.
* config/arm/arm.md (*xordi3_insn): Likewise.
* config/nds32/nds32.md (add<mode>3, mulsi3, andsi3, iorsi3)
(xorsi3): Likewise.
From-SVN: r211031
Diffstat (limited to 'gcc/config/alpha/alpha.md')
-rw-r--r-- | gcc/config/alpha/alpha.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 795b4df..34ff1f0 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -4764,7 +4764,7 @@ "operands[4] = gen_rtx_SYMBOL_REF (Pmode, \"OTS$MOVE\");") (define_insn "*movmemdi_1" - [(set (match_operand:BLK 0 "memory_operand" "=m,=m") + [(set (match_operand:BLK 0 "memory_operand" "=m,m") (match_operand:BLK 1 "memory_operand" "m,m")) (use (match_operand:DI 2 "nonmemory_operand" "r,i")) (use (match_operand:DI 3 "immediate_operand")) @@ -4831,7 +4831,7 @@ }) (define_insn "*clrmemdi_1" - [(set (match_operand:BLK 0 "memory_operand" "=m,=m") + [(set (match_operand:BLK 0 "memory_operand" "=m,m") (const_int 0)) (use (match_operand:DI 1 "nonmemory_operand" "r,i")) (use (match_operand:DI 2 "immediate_operand")) |