OSDN Git Service

Replace C++ style comment with a C style comment to satisfy some of the build bots.
authorCraig Topper <craig.topper@gmail.com>
Thu, 3 Oct 2013 06:29:59 +0000 (06:29 +0000)
committerCraig Topper <craig.topper@gmail.com>
Thu, 3 Oct 2013 06:29:59 +0000 (06:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191880 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/Disassembler/X86DisassemblerDecoder.c

index 480a869..c28047d 100644 (file)
@@ -538,7 +538,7 @@ static int readPrefixes(struct InternalInstruction* insn) {
       return -1;
     }
 
-    if ((byte1 & 0x38) != 0x0) { // 0 in these 3 bits is a POP instruction.
+    if ((byte1 & 0x38) != 0x0) { /* 0 in these 3 bits is a POP instruction. */
       insn->vexXopType = TYPE_XOP;
       insn->necessaryPrefixLocation = insn->readerCursor - 1;
     }