Replace C++ style comment with a C style comment to satisfy some of the build bots.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191880 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper 2013-10-03 06:29:59 +00:00
parent e3b0a9c51a
commit 198f1b340a

View 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;
}