diff options
author | Andrew Carlotti <andrew.carlotti@arm.com> | 2024-01-17 12:37:15 +0000 |
---|---|---|
committer | Andrew Carlotti <andrew.carlotti@arm.com> | 2024-01-23 17:33:05 +0000 |
commit | b0104cdbffdc722ee1ff7ffe7325453461ffe57d (patch) | |
tree | 59de58878500d92ceffcddd2dd6b6818e33c2b77 /include | |
parent | 36176c5d90d38f21ea0124231b083ae0510cc912 (diff) | |
download | gdb-b0104cdbffdc722ee1ff7ffe7325453461ffe57d.zip gdb-b0104cdbffdc722ee1ff7ffe7325453461ffe57d.tar.gz gdb-b0104cdbffdc722ee1ff7ffe7325453461ffe57d.tar.bz2 |
aarch64: Include +predres2 in -march=armv8.9-a
This matches the dependencies in the architecture, in LLVM, and even in the
original Binutils commit message that mistakenly included it only in armv9.4-a.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/aarch64.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 6f02f47..02ee0fc 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -306,6 +306,7 @@ enum aarch64_feature_bit { | AARCH64_FEATBIT (X, PMUv3_SS) \ | AARCH64_FEATBIT (X, PMUv3_ICNTR) \ | AARCH64_FEATBIT (X, SEBEP) \ + | AARCH64_FEATBIT (X, PREDRES2) \ ) #define AARCH64_ARCH_V9A_FEATURES(X) (AARCH64_FEATBIT (X, V9A) \ @@ -315,8 +316,7 @@ enum aarch64_feature_bit { #define AARCH64_ARCH_V9_1A_FEATURES(X) AARCH64_ARCH_V8_6A_FEATURES (X) #define AARCH64_ARCH_V9_2A_FEATURES(X) AARCH64_ARCH_V8_7A_FEATURES (X) #define AARCH64_ARCH_V9_3A_FEATURES(X) AARCH64_ARCH_V8_8A_FEATURES (X) -#define AARCH64_ARCH_V9_4A_FEATURES(X) (AARCH64_ARCH_V8_9A_FEATURES (X) \ - | AARCH64_FEATBIT (X, PREDRES2)) +#define AARCH64_ARCH_V9_4A_FEATURES(X) AARCH64_ARCH_V8_9A_FEATURES (X) /* Architectures are the sum of the base and extensions. */ #define AARCH64_ARCH_V8A(X) (AARCH64_FEATBIT (X, V8) \ |