diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-13 23:57:02 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-13 23:57:02 +0000 |
commit | 4aae77fb648754f9ea9756b6a6afa6c4a6cb63a9 (patch) | |
tree | 1e4dff94204a76d27be7cadaf75478750268fbd2 /gcc/config/mips/sb1.md | |
parent | e08a5204e5f7a3c3a15588de39202f9579ba0e79 (diff) | |
download | gcc-4aae77fb648754f9ea9756b6a6afa6c4a6cb63a9.tar.gz |
Fix typo in DFmode divide scheduler patterns.
* config/mips/sb1.md (ir_sb1_divdf_2pipes, ir_sb1_divdf_1pipe):
Correct mode from SFmode to DFmode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85976 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/sb1.md')
-rw-r--r-- | gcc/config/mips/sb1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/sb1.md b/gcc/config/mips/sb1.md index aff645baffa..de5f168e387 100644 --- a/gcc/config/mips/sb1.md +++ b/gcc/config/mips/sb1.md @@ -424,14 +424,14 @@ (define_insn_reservation "ir_sb1_divdf_2pipes" 32 (and (eq_attr "cpu" "sb1") (and (eq_attr "type" "fdiv") - (and (eq_attr "mode" "SF") + (and (eq_attr "mode" "DF") (eq_attr "sb1_fp_pipes" "two")))) "sb1_fp1 | sb1_fp0") (define_insn_reservation "ir_sb1_divdf_1pipe" 32 (and (eq_attr "cpu" "sb1") (and (eq_attr "type" "fdiv") - (and (eq_attr "mode" "SF") + (and (eq_attr "mode" "DF") (eq_attr "sb1_fp_pipes" "one")))) "sb1_fp1") |