diff options
author | prachigodbole <prachigodbole@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-26 03:52:23 +0000 |
---|---|---|
committer | prachigodbole <prachigodbole@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-26 03:52:23 +0000 |
commit | e1eb96fa4b79de0427fbceb680926e8e58215e1f (patch) | |
tree | 3568ce22a2fb2fabb5286e00ac6a4f8aba0e18ad /gcc/config/mips | |
parent | e42b90c79f64afe41cec404edce5095f1999a1cb (diff) | |
download | gcc-e1eb96fa4b79de0427fbceb680926e8e58215e1f.tar.gz |
* 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
Diffstat (limited to 'gcc/config/mips')
-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 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 */ } }; |