diff options
author | Izik Eidus <izike@qumranet.com> | 2007-11-11 14:48:17 +0200 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 17:53:01 +0200 |
commit | 906e608b05b87b650e509491e41c89575358df5e (patch) | |
tree | 0ec56997f7c5857cf82af1ed3bbce6f54e5b0660 /drivers | |
parent | e5edaa01c4cea5f60c617fac989c6458df0ecc4e (diff) |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/kvm/x86_emulate.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/kvm/x86_emulate.c b/drivers/kvm/x86_emulate.c index 64888a6edc2..e6979475bee 100644 --- a/drivers/kvm/x86_emulate.c +++ b/drivers/kvm/x86_emulate.c @@ -1558,9 +1558,6 @@ special_insn: 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; |