diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 18:28:51 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 18:28:51 +0000 |
commit | 4e6f14e40591122089b177324b39396238697238 (patch) | |
tree | a966be032d47a0fad7297b18e1a8cdc10e4f0a24 /gcc/config/mcore | |
parent | 1c3c920abf911c65b424bd7d8eb72895be869ff3 (diff) | |
download | gcc-4e6f14e40591122089b177324b39396238697238.tar.gz |
gcc/
* genrecog.c (validate_pattern): Treat all messages except missing
modes as errors.
* config/epiphany/epiphany.md: Remove constraints from
define_peephole2s.
* config/h8300/h8300.md: Remove constraints from define_splits.
* config/msp430/msp430.md: Likewise.
* config/mcore/mcore.md (movdi_i, movsf_i, movdf_k): Use
nonimmediate_operand rather than general_operand for operand 0.
* config/moxie/moxie.md (*movsi, *movqi, *movhi): Likewise.
* config/pdp11/predicates.md (float_operand, float_nonimm_operand):
Use match_operator rather than match_test to invoke general_operand.
* config/v850/v850.md (*movqi_internal, *movhi_internal)
(*movsi_internal_v850e, *movsi_internal, *movsf_internal): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205870 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mcore')
-rw-r--r-- | gcc/config/mcore/mcore.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/mcore/mcore.md b/gcc/config/mcore/mcore.md index c0568d338d5..9ac68c40644 100644 --- a/gcc/config/mcore/mcore.md +++ b/gcc/config/mcore/mcore.md @@ -1288,7 +1288,7 @@ }") (define_insn "movdi_i" - [(set (match_operand:DI 0 "general_operand" "=r,r,r,r,a,r,m") + [(set (match_operand:DI 0 "nonimmediate_operand" "=r,r,r,r,a,r,m") (match_operand:DI 1 "mcore_general_movsrc_operand" "I,M,N,r,R,m,r"))] "" "* return mcore_output_movedouble (operands, DImode);" @@ -1307,7 +1307,7 @@ }") (define_insn "movsf_i" - [(set (match_operand:SF 0 "general_operand" "=r,r,m") + [(set (match_operand:SF 0 "nonimmediate_operand" "=r,r,m") (match_operand:SF 1 "general_operand" "r,m,r"))] "" "@ @@ -1329,7 +1329,7 @@ }") (define_insn "movdf_k" - [(set (match_operand:DF 0 "general_operand" "=r,r,m") + [(set (match_operand:DF 0 "nonimmediate_operand" "=r,r,m") (match_operand:DF 1 "general_operand" "r,m,r"))] "" "* return mcore_output_movedouble (operands, DFmode);" |