diff options
author | Tamar Christina <tamar.christina@arm.com> | 2022-05-18 10:37:10 +0100 |
---|---|---|
committer | Tamar Christina <tamar.christina@arm.com> | 2022-05-18 10:37:10 +0100 |
commit | e1e15284481896505eab0cbc556f2348ef8fffbf (patch) | |
tree | 17c298333444491acc0dd41858a0289cd9424be0 | |
parent | 85aaf32e610e01ccde008e5bbfd6df95558dbeae (diff) | |
download | gdb-e1e15284481896505eab0cbc556f2348ef8fffbf.zip gdb-e1e15284481896505eab0cbc556f2348ef8fffbf.tar.gz gdb-e1e15284481896505eab0cbc556f2348ef8fffbf.tar.bz2 |
AArch64: Enable FP16 by default for Armv9-A.
In Armv9-A SVE is mandatory, and for SVE FP16 is mandatory. This fixes a disconnect
between GCC and binutils where GCC has FP16 on by default and gas doesn't.
include/ChangeLog:
2022-05-16 Tamar Christina <tamar.christina@arm.com>
* opcode/aarch64.h (AARCH64_ARCH_V9_FEATURES): Add AARCH64_FEATURE_F16.
-rw-r--r-- | include/opcode/aarch64.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index a491293..8fe2790 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -140,6 +140,7 @@ typedef uint32_t aarch64_insn; | AARCH64_FEATURE_HBC) #define AARCH64_ARCH_V9_FEATURES (AARCH64_FEATURE_V9 \ + | AARCH64_FEATURE_F16 \ | AARCH64_FEATURE_SVE \ | AARCH64_FEATURE_SVE2) #define AARCH64_ARCH_V9_1_FEATURES (AARCH64_ARCH_V8_6_FEATURES) |