mirror of https://gitee.com/openkylin/linux.git
KVM: x86 emulator: remove 8 bytes operands emulator for call near instruction
it is removed beacuse it isnt supported on a real host Signed-off-by: Izik Eidus <izike@qumranet.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
parent
e5edaa01c4
commit
906e608b05
|
@ -1558,9 +1558,6 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
|
|||
case 4:
|
||||
rel = insn_fetch(s32, 4, c->eip);
|
||||
break;
|
||||
case 8:
|
||||
rel = insn_fetch(s64, 8, c->eip);
|
||||
break;
|
||||
default:
|
||||
DPRINTF("Call: Invalid op_bytes\n");
|
||||
goto cannot_emulate;
|
||||
|
|
Loading…
Reference in New Issue