qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 4/8] target-i386: x87 exception pointers using TC


From: Jaume Marti Farriol
Subject: [Qemu-devel] [PATCH v2 4/8] target-i386: x87 exception pointers using TCG.
Date: Thu, 28 Aug 2014 22:44:36 +0200

Hello,

This patch contains a required modification due to the change of the size from 
16 bits to 32 bits of the fpop variable in the CPUX86State struct.

Best regards,
Jaume

 machine.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

signed-off: address@hidden
diff --git a/target-i386/machine.c b/target-i386/machine.c
index 16d2f6a..500f04f 100644
--- a/target-i386/machine.c
+++ b/target-i386/machine.c
@@ -397,7 +397,7 @@ static const VMStateDescription vmstate_fpop_ip_dp = {
     .version_id = 1,
     .minimum_version_id = 1,
     .fields = (VMStateField[]) {
-        VMSTATE_UINT16(env.fpop, X86CPU),
+        VMSTATE_UINT32(env.fpop, X86CPU),
         VMSTATE_UINT64(env.fpip, X86CPU),
         VMSTATE_UINT64(env.fpdp, X86CPU),
         VMSTATE_END_OF_LIST()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]