From 64b4bb607b563c9d19f3ef78238d11aac9278a6d Mon Sep 17 00:00:00 2001 From: Prachi Godbole Date: Wed, 26 Nov 2014 03:52:23 +0000 Subject: [PATCH] mips.c (mips_rtx_cost_data): Fix memory_latency cost for p5600. * config/mips/mips.c (mips_rtx_cost_data): Fix memory_latency cost for p5600. From-SVN: r218072 --- ChangeLog | 5 +++++ gcc/config/mips/mips.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6dd71f13ea9..409485c3b90 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 dad63eb3ed7..5a53d5fefc9 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 */ } }; -- 2.30.2