Avoid C++ comment in C sources

lib/Target/X86/Disassembler/X86DisassemblerDecoder.c:1361:7: error: C++ style comments are not allowed in ISO C90

llvm-svn: 200153
This commit is contained in:
Alp Toker 2014-01-26 18:44:34 +00:00
parent d89738c591
commit 771f7652a9
1 changed files with 1 additions and 1 deletions

View File

@ -1358,7 +1358,7 @@ static int readModRM(struct InternalInstruction* insn) {
break;
case 0x1:
insn->displacementSize = 1;
// FALLTHROUGH
/* FALLTHROUGH */
case 0x2:
insn->eaDisplacement = (mod == 0x1 ? EA_DISP_8 : EA_DISP_32);
switch (rm) {