]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Change the type of the aarch64_feature_set typedef to unsigned long long so that...
authorNick Clifton <nickc@redhat.com>
Thu, 9 Nov 2017 10:28:32 +0000 (10:28 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 9 Nov 2017 10:28:32 +0000 (10:28 +0000)
* opcode/aarch64.h (aarch64_feature_set): Change type to unsigned
long long.

include/ChangeLog
include/opcode/aarch64.h

index b74d05a7eeb746813817ed1c7a9edd0ceae3fcb5..c27ec9c2df4650f1ce62f67a1819f44b20624264 100644 (file)
@@ -1,3 +1,8 @@
+2017-11-09  Nick Clifton  <nickc@redhat.com>
+
+       * opcode/aarch64.h (aarch64_feature_set): Change type to unsigned
+       long long.
+
 2017-11-08  Tamar Christina  <tamar.christina@arm.com>
 
        * opcode/aarch64.h:
index 325b757b1cce04b00dd8155f17497b3b42b7e856..a597ebe0cbdb78b5abeb3268b53024d85de6b601 100644 (file)
@@ -82,7 +82,7 @@ typedef uint32_t aarch64_insn;
 #define AARCH64_ANY            AARCH64_FEATURE (-1, 0) /* Any basic core.  */
 
 /* CPU-specific features.  */
-typedef unsigned long aarch64_feature_set;
+typedef unsigned long long aarch64_feature_set;
 
 #define AARCH64_CPU_HAS_ALL_FEATURES(CPU,FEAT) \
   ((~(CPU) & (FEAT)) == 0)