summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Muellner <christoph.muellner@theobroma-systems.com>2018-08-07 15:59:51 +0200
committerChristoph Muellner <christoph.muellner@theobroma-systems.com>2019-08-30 20:10:53 +0200
commita039552f3ba1a7cda7912fc81bc7d9c0f6640ea6 (patch)
treeba572d0fcc95db162282bb135db465332c768eb3
parentcd5727c3b035433131fd4777008b12505d01ed5a (diff)
[AArch64] Fix in xgene1_addrcost_table.
post_modify has also costs of 1. Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
-rw-r--r--gcc/config/aarch64/aarch64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c
index d6584ca26562..0959fbc8c106 100644
--- a/gcc/config/aarch64/aarch64.c
+++ b/gcc/config/aarch64/aarch64.c
@@ -295,7 +295,7 @@ static const struct cpu_addrcost_table xgene1_addrcost_table =
1, /* ti */
},
1, /* pre_modify */
- 0, /* post_modify */
+ 1, /* post_modify */
0, /* register_offset */
1, /* register_sextend */
1, /* register_zextend */