Commit 8d805e02 by Evandro Menezes Committed by Richard Earnshaw

aarch64.c (generic_addrcost_table): Delete qi cost; add di cost.

2014-08-26  Evandro Menezes <e.menezes@samsung.com>

	* config/arm/aarch64/aarch64.c (generic_addrcost_table): Delete
	qi cost; add di cost.
	(cortexa57_addrcost_table): Likewise.

From-SVN: r214503
parent 7e51aabc
2014-08-26 Evandro Menezes <e.menezes@samsung.com>
* config/arm/aarch64/aarch64.c (generic_addrcost_table): Delete
qi cost; add di cost.
(cortexa57_addrcost_table): Likewise.
2014-08-26 Marek Polacek <polacek@redhat.com> 2014-08-26 Marek Polacek <polacek@redhat.com>
PR c/61271 PR c/61271
......
...@@ -177,9 +177,9 @@ static const struct cpu_addrcost_table generic_addrcost_table = ...@@ -177,9 +177,9 @@ static const struct cpu_addrcost_table generic_addrcost_table =
.addr_scale_costs = .addr_scale_costs =
#endif #endif
{ {
NAMED_PARAM (qi, 0),
NAMED_PARAM (hi, 0), NAMED_PARAM (hi, 0),
NAMED_PARAM (si, 0), NAMED_PARAM (si, 0),
NAMED_PARAM (di, 0),
NAMED_PARAM (ti, 0), NAMED_PARAM (ti, 0),
}, },
NAMED_PARAM (pre_modify, 0), NAMED_PARAM (pre_modify, 0),
...@@ -198,9 +198,9 @@ static const struct cpu_addrcost_table cortexa57_addrcost_table = ...@@ -198,9 +198,9 @@ static const struct cpu_addrcost_table cortexa57_addrcost_table =
.addr_scale_costs = .addr_scale_costs =
#endif #endif
{ {
NAMED_PARAM (qi, 0),
NAMED_PARAM (hi, 1), NAMED_PARAM (hi, 1),
NAMED_PARAM (si, 0), NAMED_PARAM (si, 0),
NAMED_PARAM (di, 0),
NAMED_PARAM (ti, 1), NAMED_PARAM (ti, 1),
}, },
NAMED_PARAM (pre_modify, 0), NAMED_PARAM (pre_modify, 0),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment