diff mbox

[v2,4/8] target-i386: x87 exception pointers using TCG.

Message ID 1409258680-15555-5-git-send-email-jaume.martif@gmail.com
State New
Headers show

Commit Message

Jaume Martí Aug. 28, 2014, 8:44 p.m. UTC
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.martif@gmail.com

Comments

Richard Henderson Aug. 29, 2014, 10:59 p.m. UTC | #1
On 08/28/2014 01:44 PM, Jaume Marti Farriol wrote:
> 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.

Likewise not splittable from patch 1.


r~
diff mbox

Patch

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()