aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorIzik Eidus <izike@qumranet.com>2007-11-11 07:48:17 -0500
committerAvi Kivity <avi@qumranet.com>2008-01-30 10:53:01 -0500
commit906e608b05b87b650e509491e41c89575358df5e (patch)
tree0ec56997f7c5857cf82af1ed3bbce6f54e5b0660 /drivers
parente5edaa01c4cea5f60c617fac989c6458df0ecc4e (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.c3
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:
1558 case 4: 1558 case 4:
1559 rel = insn_fetch(s32, 4, c->eip); 1559 rel = insn_fetch(s32, 4, c->eip);
1560 break; 1560 break;
1561 case 8:
1562 rel = insn_fetch(s64, 8, c->eip);
1563 break;
1564 default: 1561 default:
1565 DPRINTF("Call: Invalid op_bytes\n"); 1562 DPRINTF("Call: Invalid op_bytes\n");
1566 goto cannot_emulate; 1563 goto cannot_emulate;