diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/i386/i386.c | 4 |
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. */ }; |
