Commit 906e608b authored by Izik Eidus's avatar Izik Eidus Committed by Avi Kivity
Browse files

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: default avatarIzik Eidus <izike@qumranet.com>
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent e5edaa01
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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;