On 9/12/22 00:03, Paolo Bonzini wrote:
@@ -180,6 +210,8 @@ struct X86OpEntry {
X86InsnSpecial special : 8;
      X86CPUIDFeature cpuid : 8;
+    uint8_t      vex_class : 8;

Since uint8_t expands to 'unsigned char', it's friendlier to use 'unsigned' with bitfields, so that gdb doesn't try to render the field as a character.


r~

Reply via email to