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>2018-08-08 16:21:53 +0200
commit6e9b669b84f7b7dfb872c1ce913d8ad9026d64c7 (patch)
tree93a9b5c21718c5f279b36b25d3391ea64089b4eb
parentd9cd20d5aad8cfe4d90b06244ff8edd32889fe04 (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 82f252da1c4f..f2fee68d9a8c 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 */