From: prachigodbole Date: Wed, 26 Nov 2014 03:52:23 +0000 (+0000) Subject: * config/mips/mips.c (mips_rtx_cost_data): Fix memory_latency cost X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1eb96fa4b79de0427fbceb680926e8e58215e1f;p=thirdparty%2Fgcc.git * config/mips/mips.c (mips_rtx_cost_data): Fix memory_latency cost for p5600. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218072 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/ChangeLog b/ChangeLog index 6dd71f13ea9d..409485c3b901 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-11-26 Prachi Godbole + + * config/mips/mips.c (mips_rtx_cost_data): Fix memory_latency cost + for p5600. + 2014-11-24 Bernd Edlinger * Makefile.def (module=gmp): Work around in-tree gmp configure bug with diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index dad63eb3ed72..5a53d5fefc93 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -1224,7 +1224,7 @@ static const struct mips_rtx_cost_data COSTS_N_INSNS (8), /* int_div_si */ COSTS_N_INSNS (8), /* int_div_di */ 2, /* branch_cost */ - 10 /* memory_latency */ + 4 /* memory_latency */ } };