Change C++ style comments to C style comments in X86 disassembler. Patch from Joe Abbey.
llvm-svn: 141162
diff --git a/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c b/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
index 2508c06..9ad8532 100644
--- a/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
+++ b/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
@@ -933,7 +933,7 @@
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 @@
specWithNewOpcode = specifierForUID(instructionIDWithNewOpcode);
- // Change back
+ /* Change back */
insn->opcode = 0x90;
insn->instructionID = instructionIDWithNewOpcode;