]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
aarch64: Increase the number of feature words to 3
authorRichard Earnshaw <rearnsha@arm.com>
Fri, 6 Jun 2025 14:12:50 +0000 (15:12 +0100)
committerRichard Earnshaw <rearnsha@arm.com>
Mon, 9 Jun 2025 14:42:35 +0000 (15:42 +0100)
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.

include/opcode/aarch64.h

index c90a6978bdf56dab3ce4d043fb5069c3513b24d1..29dc094ac5f49917817fef288295c8ffbdac39e4 100644 (file)
@@ -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 ,