forked from OSchip/llvm-project
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:
parent
d89738c591
commit
771f7652a9
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue