diff options
author | Prachi Godbole <prachi.godbole@imgtec.com> | 2014-11-26 03:52:23 +0000 |
---|---|---|
committer | Prachi Godbole <prachigodbole@gcc.gnu.org> | 2014-11-26 03:52:23 +0000 |
commit | 64b4bb607b563c9d19f3ef78238d11aac9278a6d (patch) | |
tree | 3568ce22a2fb2fabb5286e00ac6a4f8aba0e18ad /gcc | |
parent | 62926da608b439c71bc7344e0aee2c6c8a71c2f5 (diff) | |
download | gcc-64b4bb607b563c9d19f3ef78238d11aac9278a6d.zip gcc-64b4bb607b563c9d19f3ef78238d11aac9278a6d.tar.gz gcc-64b4bb607b563c9d19f3ef78238d11aac9278a6d.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index dad63eb..5a53d5f 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 */ } }; |