Change C++ style comments to C style comments in X86 disassembler. Patch from Joe...
authorCraig Topper <craig.topper@gmail.com>
Wed, 5 Oct 2011 03:29:32 +0000 (03:29 +0000)
committerCraig Topper <craig.topper@gmail.com>
Wed, 5 Oct 2011 03:29:32 +0000 (03:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141162 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/Disassembler/X86DisassemblerDecoder.c

index 2508c0682160c1f26e5a2efd717a9d4b1bd86d6f..9ad8532d40018f77414df449f2ebedb8518b9e80 100644 (file)
@@ -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;