aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Wilson <wilson@specifixinc.com>2004-08-13 23:57:02 +0000
committerJim Wilson <wilson@gcc.gnu.org>2004-08-13 16:57:02 -0700
commit2b407936ca8d252852a3f7ff944d4e22af0bee00 (patch)
tree1e4dff94204a76d27be7cadaf75478750268fbd2
parent4109fe8594fef15d5cb36d1019e5b7c95dbc45f6 (diff)
downloadgcc-2b407936ca8d252852a3f7ff944d4e22af0bee00.zip
gcc-2b407936ca8d252852a3f7ff944d4e22af0bee00.tar.gz
gcc-2b407936ca8d252852a3f7ff944d4e22af0bee00.tar.bz2
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
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/mips/sb1.md4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index acf67eb..7a94d93 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-08-13 James E Wilson <wilson@specifixinc.com>
+
+ * config/mips/sb1.md (ir_sb1_divdf_2pipes, ir_sb1_divdf_1pipe):
+ Correct mode from SFmode to DFmode.
+
2004-08-13 Ziemowit Laski <zlaski@apple.com>
* 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 aff645b..de5f168 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")