[binutils-gdb] aarch64: Increase the number of feature words to 3

Richard Earnshaw rearnsha@sourceware.org
Mon Jun 9 14:43:11 GMT 2025


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=ab65e51fa9d3b9ca44944ce191297ee4f23a33e6

commit ab65e51fa9d3b9ca44944ce191297ee4f23a33e6
Author: Richard Earnshaw <rearnsha@arm.com>
Date:   Fri Jun 6 15:12:50 2025 +0100

    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.

Diff:
---
 include/opcode/aarch64.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h
index c90a6978bdf..29dc094ac5f 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 ,


More information about the Binutils-cvs mailing list