aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2004-09-27 18:19:18 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2004-09-27 16:19:18 +0000
commit8c1e80e992de21c9f5b991357078e407a02d8b78 (patch)
treeec83eb41b33a145005a83b75c2231c83b43d4291 /gcc
parenta487f59fd96a205bfd7de012d82d83ddb6fdee6d (diff)
downloadgcc-8c1e80e992de21c9f5b991357078e407a02d8b78.zip
gcc-8c1e80e992de21c9f5b991357078e407a02d8b78.tar.gz
gcc-8c1e80e992de21c9f5b991357078e407a02d8b78.tar.bz2
* i386.c (athlon_cost, k8_cost): Set BRANCH_COST to 5.
From-SVN: r88181
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i386/i386.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b75fc60..7601194 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-27 Jan Hubicka <jh@suse.cz>
+
+ * i386.c (athlon_cost, k8_cost): Set BRANCH_COST to 5.
+
2004-09-27 Kazu Hirata <kazu@cs.umass.edu>
* bitmap.h: Fix a comment typo.
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index de8411e..b5a33fc 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -362,7 +362,7 @@ struct processor_costs athlon_cost = {
5, /* MMX or SSE register to integer */
64, /* size of prefetch block */
6, /* number of parallel prefetches */
- 2, /* Branch cost */
+ 5, /* Branch cost */
4, /* cost of FADD and FSUB insns. */
4, /* cost of FMUL instruction. */
24, /* cost of FDIV instruction. */
@@ -406,7 +406,7 @@ struct processor_costs k8_cost = {
5, /* MMX or SSE register to integer */
64, /* size of prefetch block */
6, /* number of parallel prefetches */
- 2, /* Branch cost */
+ 5, /* Branch cost */
4, /* cost of FADD and FSUB insns. */
4, /* cost of FMUL instruction. */
19, /* cost of FDIV instruction. */