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: jaume.mar...@gmail.com
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