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/pdp11 | |
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/pdp11')
-rw-r--r-- | gcc/config/pdp11/predicates.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pdp11/predicates.md b/gcc/config/pdp11/predicates.md index 7ae9ee4f03d..e3b205187ae 100644 --- a/gcc/config/pdp11/predicates.md +++ b/gcc/config/pdp11/predicates.md @@ -42,7 +42,7 @@ (ior (match_test "REGNO_REG_CLASS (REGNO (op)) == LOAD_FPU_REGS") (match_test "REGNO_REG_CLASS (REGNO (op)) == NO_LOAD_FPU_REGS")) - (match_test "general_operand (op, mode)"))) + (match_operand 0 "general_operand"))) ;; Accept anything nonimmediate_operand accepts, except that registers must ;; be FPU registers. @@ -51,4 +51,4 @@ (ior (match_test "REGNO_REG_CLASS (REGNO (op)) == LOAD_FPU_REGS") (match_test "REGNO_REG_CLASS (REGNO (op)) == NO_LOAD_FPU_REGS")) - (match_test "nonimmediate_operand (op, mode)"))) + (match_operand 0 "nonimmediate_operand"))) |