OSDN Git Service

X86DisassemblerDecoder.c: Make this C89-compliant.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 25 Mar 2013 20:55:49 +0000 (20:55 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 25 Mar 2013 20:55:49 +0000 (20:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177910 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/Disassembler/X86DisassemblerDecoder.c

index 3f4f18f..e40edba 100644 (file)
@@ -323,9 +323,9 @@ static int readPrefixes(struct InternalInstruction* insn) {
      */
     if (insn->readerCursor - 1 == insn->startLocation
         && (byte == 0xf0 || byte == 0xf2 || byte == 0xf3)) {
+      uint8_t nextByte;
       if (byte == 0xf0)
         break;
-      uint8_t nextByte;
       if (lookAtByte(insn, &nextByte))
         return -1;
       if (insn->mode == MODE_64BIT && (nextByte & 0xf0) == 0x40) {