diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-10 18:35:43 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-10 18:35:43 +0000 |
commit | 3a7ca9df23e499cb422225146c32b41c7b2a18ad (patch) | |
tree | ce05352c7b32b19a3c31bab0a19f7e1e3355740c /gcc/config/mips/7000.md | |
parent | eab4ad60e30f2629eb357673b3b2dd0084bbd12e (diff) | |
download | gcc-3a7ca9df23e499cb422225146c32b41c7b2a18ad.tar.gz |
* read-rtl.c (read_rtx): Allow 's' and 'T' strings to be omitted,
treating missing ones as "".
* config/mips/mips.md: Remove constraints from match_operands and
match_scratches if they appear in define_expands (except reload*),
define_peephole2s, define_splits or attribute specifications.
* config/mips/7000.md, config/mips/sb1.md: Remove match_operand
constraint strings.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81676 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/7000.md')
-rw-r--r-- | gcc/config/mips/7000.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/7000.md b/gcc/config/mips/7000.md index 55402b95931..8917a6fa102 100644 --- a/gcc/config/mips/7000.md +++ b/gcc/config/mips/7000.md @@ -113,7 +113,7 @@ (and (eq_attr "cpu" "r7000") (and (eq_attr "type" "imul,imadd") (and (eq_attr "mode" "SI") - (match_operand 0 "hilo_operand" "")))) + (match_operand 0 "hilo_operand")))) "rm7_impydiv+(rm7_impydiv_iter*3)") ;; There are an additional 2 stall cycles. @@ -121,7 +121,7 @@ (and (eq_attr "cpu" "r7000") (and (eq_attr "type" "imul,imadd") (and (eq_attr "mode" "SI") - (not (match_operand 0 "hilo_operand" ""))))) + (not (match_operand 0 "hilo_operand"))))) "rm7_impydiv") (define_insn_reservation "rm7_impy_di" 9 (and (eq_attr "cpu" "r7000") |