Loading arch/x86/kvm/emulate.c +5 −7 Original line number Diff line number Diff line Loading @@ -2375,14 +2375,12 @@ x86_decode_insn(struct x86_emulate_ctxt *ctxt) /* Opcode byte(s). */ opcode = opcode_table[c->b]; if (opcode.flags == 0) { /* Two-byte opcode? */ if (c->b == 0x0f) { c->twobyte = 1; c->b = insn_fetch(u8, 1, c->eip); opcode = twobyte_table[c->b]; } } c->d = opcode.flags; if (c->d & Group) { Loading Loading
arch/x86/kvm/emulate.c +5 −7 Original line number Diff line number Diff line Loading @@ -2375,14 +2375,12 @@ x86_decode_insn(struct x86_emulate_ctxt *ctxt) /* Opcode byte(s). */ opcode = opcode_table[c->b]; if (opcode.flags == 0) { /* Two-byte opcode? */ if (c->b == 0x0f) { c->twobyte = 1; c->b = insn_fetch(u8, 1, c->eip); opcode = twobyte_table[c->b]; } } c->d = opcode.flags; if (c->d & Group) { Loading