From: James E Wilson Date: Fri, 13 Aug 2004 23:57:02 +0000 (+0000) Subject: Fix typo in DFmode divide scheduler patterns. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2b407936ca8d252852a3f7ff944d4e22af0bee00;p=gcc.git 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 --- 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")