diff --git a/arch/X86/X86DisassemblerDecoder.h b/arch/X86/X86DisassemblerDecoder.h index e81f3e71..d3c54245 100644 --- a/arch/X86/X86DisassemblerDecoder.h +++ b/arch/X86/X86DisassemblerDecoder.h @@ -554,7 +554,7 @@ typedef struct InternalInstruction { // from here, all members must be initialized to ZERO to work properly uint8_t operandSize; uint8_t prefix0, prefix1, prefix2, prefix3; - /* 1 if the prefix byte corresponding to the entry is present; 0 if not */ + /* true if the prefix byte corresponding to the entry is present; false if not */ bool isPrefix26; bool isPrefix2e; bool isPrefix36; @@ -599,7 +599,7 @@ typedef struct InternalInstruction { uint8_t sibScale; SIBBase sibBase; uint8_t numImmediatesConsumed; - /* 1 if the prefix byte, 0xf2 or 0xf3 is xacquire or xrelease */ + /* true if the prefix byte, 0xf2 or 0xf3 is xacquire or xrelease */ bool xAcquireRelease; /* The value of the vector extension prefix(EVEX/VEX/XOP), if present */