From: Jan Hubicka Date: Mon, 27 Sep 2004 16:19:18 +0000 (+0200) Subject: * i386.c (athlon_cost, k8_cost): Set BRANCH_COST to 5. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c1e80e992de21c9f5b991357078e407a02d8b78;p=gcc.git * i386.c (athlon_cost, k8_cost): Set BRANCH_COST to 5. From-SVN: r88181 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b75fc60c922..7601194d344 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-09-27 Jan Hubicka + + * i386.c (athlon_cost, k8_cost): Set BRANCH_COST to 5. + 2004-09-27 Kazu Hirata * bitmap.h: Fix a comment typo. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index de8411eb663..b5a33fc01ba 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. */