From 2b407936ca8d252852a3f7ff944d4e22af0bee00 Mon Sep 17 00:00:00 2001 From: James E Wilson Date: Fri, 13 Aug 2004 23:57:02 +0000 Subject: [PATCH] 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. From-SVN: r85976 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/sb1.md | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index acf67ebc236..7a94d93ef80 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-13 James E Wilson + + * config/mips/sb1.md (ir_sb1_divdf_2pipes, ir_sb1_divdf_1pipe): + Correct mode from SFmode to DFmode. + 2004-08-13 Ziemowit Laski * config/darwin.h (EXTRA_SECTION_FUNCTIONS): Mark the __sel_fixup, 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") -- 2.30.2