arm: Add missing Neoverse V1 feature
authorAlex Coplan <alex.coplan@arm.com>
Mon, 28 Sep 2020 12:57:09 +0000 (13:57 +0100)
committerAlex Coplan <alex.coplan@arm.com>
Mon, 28 Sep 2020 12:57:09 +0000 (13:57 +0100)
This simple follow-on patch adds a feature bit (FP16) that was missing
from the initial Neoverse V1 support.

gas/ChangeLog:

* config/tc-arm.c (arm_cpus): Add FP16 to Neoverse V1.

gas/ChangeLog
gas/config/tc-arm.c

index f3b2e9b5381de3052a784d2ec627d73e87136a44..b58a2240b1c222ce4dee445d0e93555d3bbbde54 100644 (file)
@@ -1,3 +1,7 @@
+2020-09-28  Alex Coplan  <alex.coplan@arm.com>
+
+       * config/tc-arm.c (arm_cpus): Add FP16 to Neoverse V1.
+
 2020-09-28  Alex Coplan  <alex.coplan@arm.com>
 
        * config/tc-aarch64.c (aarch64_cpus): Group Neoverse cores together,
index 455a1401b7fa9c40426933b82b465393c1c25be7..39f989ea99cd2c4741fade07da1266fe596b8f0c 100644 (file)
@@ -31600,7 +31600,9 @@ static const struct arm_cpu_option_table arm_cpus[] =
                                    | ARM_EXT2_I8MM),
               FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4),
   ARM_CPU_OPT ("neoverse-v1", "Neoverse V1", ARM_ARCH_V8_4A,
-              ARM_FEATURE_CORE_HIGH (ARM_EXT2_BF16 | ARM_EXT2_I8MM),
+              ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST
+                                   | ARM_EXT2_BF16
+                                   | ARM_EXT2_I8MM),
               FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4),
   /* ??? XSCALE is really an architecture.  */
   ARM_CPU_OPT ("xscale",         NULL,                ARM_ARCH_XSCALE,
This page took 0.036125 seconds and 4 git commands to generate.