qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] disas/mips: Increase 'member of ISAs' flag holder s


From: Philippe Mathieu-Daudé
Subject: [Qemu-devel] [PATCH] disas/mips: Increase 'member of ISAs' flag holder size
Date: Wed, 24 Oct 2018 12:57:32 +0200

Increase the size of 'membership' holder size to 64 bits. This is
needed for future extensions since existing bits are almost all used.
(This change is related to f9c9cd63e3),

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
 disas/mips.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/disas/mips.c b/disas/mips.c
index 97f661a37e..d73d4094d8 100644
--- a/disas/mips.c
+++ b/disas/mips.c
@@ -301,7 +301,7 @@ struct mips_opcode
   unsigned long pinfo2;
   /* A collection of bits describing the instruction sets of which this
      instruction or macro is a member. */
-  unsigned long membership;
+  uint64_t membership;
 };
 
 /* These are the characters which may appear in the args field of an
-- 
2.19.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]