2014-09-03 Yvan Roux <yvan.roux@linaro.org>
authoryroux <yroux@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Sep 2014 07:04:32 +0000 (07:04 +0000)
committeryroux <yroux@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Sep 2014 07:04:32 +0000 (07:04 +0000)
Backport from trunk r214503.
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.

git-svn-id: svn://gcc.gnu.org/svn/gcc/branches/linaro/gcc-4_9-branch@214845 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog.linaro
gcc/config/aarch64/aarch64.c

index 85330bf..eaa88b6 100644 (file)
@@ -1,5 +1,14 @@
 2014-09-03  Yvan Roux  <yvan.roux@linaro.org>
 
+       Backport from trunk r214503.
+       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-09-03  Yvan Roux  <yvan.roux@linaro.org>
+
        Backport from trunk r213659.
        2014-08-06  Alan Lawrence  <alan.lawrence@arm.com>
 
index 3d340f3..5572ccf 100644 (file)
@@ -177,9 +177,9 @@ static const struct cpu_addrcost_table generic_addrcost_table =
   .addr_scale_costs =
 #endif
     {
-      NAMED_PARAM (qi, 0),
       NAMED_PARAM (hi, 0),
       NAMED_PARAM (si, 0),
+      NAMED_PARAM (di, 0),
       NAMED_PARAM (ti, 0),
     },
   NAMED_PARAM (pre_modify, 0),
@@ -198,9 +198,9 @@ static const struct cpu_addrcost_table cortexa57_addrcost_table =
   .addr_scale_costs =
 #endif
     {
-      NAMED_PARAM (qi, 0),
       NAMED_PARAM (hi, 1),
       NAMED_PARAM (si, 0),
+      NAMED_PARAM (di, 0),
       NAMED_PARAM (ti, 1),
     },
   NAMED_PARAM (pre_modify, 0),