aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Earnshaw <rearnsha@arm.com>2025-06-06 15:12:50 +0100
committerRichard Earnshaw <rearnsha@arm.com>2025-06-09 15:42:35 +0100
commitab65e51fa9d3b9ca44944ce191297ee4f23a33e6 (patch)
tree96bd4bb421e6add846c745cd703160d2265d9ef8
parentdccb302cf2ec0fbe32bf5b1c515f84f6a754a2ed (diff)
downloadbinutils-ab65e51fa9d3b9ca44944ce191297ee4f23a33e6.zip
binutils-ab65e51fa9d3b9ca44944ce191297ee4f23a33e6.tar.gz
binutils-ab65e51fa9d3b9ca44944ce191297ee4f23a33e6.tar.bz2
aarch64: Increase the number of feature words to 3
Now that most of the effort of updating the number of feature words is handled by macros, add an additional one, taking the number of supported features to 192.
-rw-r--r--include/opcode/aarch64.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h
index c90a697..29dc094 100644
--- a/include/opcode/aarch64.h
+++ b/include/opcode/aarch64.h
@@ -295,7 +295,8 @@ typedef uint64_t aarch64_feature_word;
#define AA64_REPLICATE(SEP, BODY, ...) \
BODY (0, __VA_ARGS__) SEP \
- BODY (1, __VA_ARGS__)
+ BODY (1, __VA_ARGS__) SEP \
+ BODY (2, __VA_ARGS__)
/* Some useful SEP operators for use with replication. */
#define REP_COMMA ,