diff options
author | Alex Coplan <alex.coplan@arm.com> | 2020-09-24 15:35:30 +0100 |
---|---|---|
committer | Alex Coplan <alex.coplan@arm.com> | 2020-09-24 15:38:30 +0100 |
commit | 6eee0315f6767ba932f19513af1ff432e5071bea (patch) | |
tree | 84938480721c2ed4507b3e5dd2254ef903eff355 /gas/config | |
parent | 9e980ddcefc2fac99a41965ef77e16386a0f86e2 (diff) | |
download | gdb-6eee0315f6767ba932f19513af1ff432e5071bea.zip gdb-6eee0315f6767ba932f19513af1ff432e5071bea.tar.gz gdb-6eee0315f6767ba932f19513af1ff432e5071bea.tar.bz2 |
arm: Add support for Neoverse V1 CPU
This patch adds support for Arm's Neoverse V1 CPU to AArch32 binutils.
gas/ChangeLog:
2020-09-24 Alex Coplan <alex.coplan@arm.com>
* config/tc-arm.c (arm_cpus): Add Neoverse V1.
* doc/c-arm.texi: Document Neoverse V1 support.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index fce3ad3..455a140 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -31599,6 +31599,9 @@ static const struct arm_cpu_option_table arm_cpus[] = | ARM_EXT2_BF16 | 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), + FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4), /* ??? XSCALE is really an architecture. */ ARM_CPU_OPT ("xscale", NULL, ARM_ARCH_XSCALE, ARM_ARCH_NONE, |