aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/arm/driver-arm.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 59b19b9..b1846ac 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
2017-12-21 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+ * config/arm/driver-arm.c (arm_cpu_table): Specify dotprod
+ support for Cortex-A55 and Cortex-A75.
+
+2017-12-21 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+
* common/config/arm/arm-common.c (compare_opt_names): Add function
comment. Use strcmp instead of manual loop.
diff --git a/gcc/config/arm/driver-arm.c b/gcc/config/arm/driver-arm.c
index 280f420..328cec9 100644
--- a/gcc/config/arm/driver-arm.c
+++ b/gcc/config/arm/driver-arm.c
@@ -54,8 +54,8 @@ static struct vendor_cpu arm_cpu_table[] = {
{"0xd07", "armv8-a+crc", "cortex-a57"},
{"0xd08", "armv8-a+crc", "cortex-a72"},
{"0xd09", "armv8-a+crc", "cortex-a73"},
- {"0xd05", "armv8.2-a+fp16", "cortex-a55"},
- {"0xd0a", "armv8.2-a+fp16", "cortex-a75"},
+ {"0xd05", "armv8.2-a+fp16+dotprod", "cortex-a55"},
+ {"0xd0a", "armv8.2-a+fp16+dotprod", "cortex-a75"},
{"0xc14", "armv7-r", "cortex-r4"},
{"0xc15", "armv7-r", "cortex-r5"},
{"0xc17", "armv7-r", "cortex-r7"},