diff options
author | Igor Mammedov <imammedo@redhat.com> | 2014-03-15 21:02:00 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-03-17 12:14:30 +0100 |
commit | 6fec27d80feb12f88babcfe75f70f955c51723e8 (patch) | |
tree | 981ffab983c70ecd81cca24a0fc28a934b69a752 /arch/x86 | |
parent | 27ce825823a145eb72bd5a5832c6dbb3168b720e (diff) | |
download | blackbird-op-linux-6fec27d80feb12f88babcfe75f70f955c51723e8.tar.gz blackbird-op-linux-6fec27d80feb12f88babcfe75f70f955c51723e8.zip |
KVM: x86 emulator: emulate MOVAPD
Add emulation for 0x66 prefixed instruction of 0f 28 opcode
that has been added earlier.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kvm/emulate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index a26d075da58f..205b17eed93c 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c @@ -3669,7 +3669,7 @@ static const struct gprefix pfx_vmovntpx = { }; static const struct gprefix pfx_0f_28_0f_29 = { - I(Aligned, em_mov), N, N, N, + I(Aligned, em_mov), I(Aligned, em_mov), N, N, }; static const struct escape escape_d9 = { { |