[llvm] r191880 - Replace C++ style comment with a C style comment to satisfy some of the build bots.
Craig Topper
craig.topper at gmail.com
Wed Oct 2 23:30:00 PDT 2013
Author: ctopper
Date: Thu Oct 3 01:29:59 2013
New Revision: 191880
URL: http://llvm.org/viewvc/llvm-project?rev=191880&view=rev
Log:
Replace C++ style comment with a C style comment to satisfy some of the build bots.
Modified:
llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
Modified: llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c?rev=191880&r1=191879&r2=191880&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c (original)
+++ llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c Thu Oct 3 01:29:59 2013
@@ -538,7 +538,7 @@ static int readPrefixes(struct InternalI
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;
}
More information about the llvm-commits
mailing list