]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[AArch64] Enable CRC feature in GAS for cortex-a53 and cortex-a57.
authorMarcus Shawcroft <marcus.shawcroft@arm.com>
Tue, 18 Nov 2014 14:00:56 +0000 (14:00 +0000)
committerMarcus Shawcroft <marcus.shawcroft@arm.com>
Tue, 18 Nov 2014 14:00:56 +0000 (14:00 +0000)
gas/ChangeLog
gas/config/tc-aarch64.c

index 58ff08261d4ef561e673ea71007d92b20fd9520d..bc39ebc8044c47be4cb3e3c2ae54661d49952b7c 100644 (file)
@@ -1,3 +1,9 @@
+2014-11-18  Marcus Shawcroft  <marcus.shawcroft@arm.com>
+
+       Apply trunk patch:
+       * config/tc-aarch64.c (aarch64_cpus): Add CRC feature for
+       cortex-A53 and cortex-A57.
+
 2014-11-17  Nick Clifton  <nickc@redhat.com>
 
        Apply trunk patches:
index 150949cc685007464874658cc7942ebe2560e47c..14610574474fa5220dce36856a306d4494d2f254 100644 (file)
@@ -7180,8 +7180,10 @@ struct aarch64_cpu_option_table
    recognized by GCC.  */
 static const struct aarch64_cpu_option_table aarch64_cpus[] = {
   {"all", AARCH64_ANY, NULL},
-  {"cortex-a53",       AARCH64_ARCH_V8, "Cortex-A53"},
-  {"cortex-a57",       AARCH64_ARCH_V8, "Cortex-A57"},
+  {"cortex-a53", AARCH64_FEATURE(AARCH64_ARCH_V8,
+                                AARCH64_FEATURE_CRC), "Cortex-A53"},
+  {"cortex-a57", AARCH64_FEATURE(AARCH64_ARCH_V8,
+                                AARCH64_FEATURE_CRC), "Cortex-A57"},
   {"xgene-1", AARCH64_ARCH_V8, "APM X-Gene 1"},
   {"generic", AARCH64_ARCH_V8, NULL},