aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2002-10-14 21:48:12 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2002-10-14 21:48:12 +0000
commit4f770e7b9d151ca21b3ca21e0486217054f95aa7 (patch)
tree475bb1f30315696919d3cd4b2d3e10c57362f1f3 /gcc
parenta3b885703b3f06403067eae7ff54f6826b6a5e08 (diff)
downloadgcc-4f770e7b9d151ca21b3ca21e0486217054f95aa7.zip
gcc-4f770e7b9d151ca21b3ca21e0486217054f95aa7.tar.gz
gcc-4f770e7b9d151ca21b3ca21e0486217054f95aa7.tar.bz2
i386.c (k6_cost): Correct typo.
* config/i386/i386.c (k6_cost): Correct typo. Co-Authored-By: Zack Weinberg <zack@codesourcery.com> From-SVN: r58139
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/i386.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2513b47..65c096a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-14 Roger Sayle <roger@eyesopen.com>
+ Zack Weinberg <zack@codesourcery.com>
+
+ * config/i386/i386.c (k6_cost): Correct typo.
+
2002-10-14 Mark Mitchell <mark@codesourcery.com>
PR optimization/6631
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index 6b6eb6c..3ef4848 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -302,8 +302,8 @@ struct processor_costs k6_cost = {
1, /* number of parallel prefetches */
2, /* cost of FADD and FSUB insns. */
2, /* cost of FMUL instruction. */
- 2, /* cost of FDIV instruction. */
- 56, /* cost of FABS instruction. */
+ 56, /* cost of FDIV instruction. */
+ 2, /* cost of FABS instruction. */
2, /* cost of FCHS instruction. */
56, /* cost of FSQRT instruction. */
};