diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c b/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c index 2508c068216..9ad8532d400 100644 --- a/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c +++ b/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c @@ -933,7 +933,7 @@ static int getID(struct InternalInstruction* insn) {      spec = specifierForUID(instructionID); -    // Borrow opcode from one of the other XCHGar opcodes +    /* Borrow opcode from one of the other XCHGar opcodes */      insn->opcode = 0x91;      if (getIDWithAttrMask(&instructionIDWithNewOpcode, @@ -948,7 +948,7 @@ static int getID(struct InternalInstruction* insn) {      specWithNewOpcode = specifierForUID(instructionIDWithNewOpcode); -    // Change back  +    /* Change back */      insn->opcode = 0x90;      insn->instructionID = instructionIDWithNewOpcode;  | 

