mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
x86: fpus is uint16_t not unsigned int
We save more that fpus on that 16 bits (fpstt), we need an additional field Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
eb83162311
commit
67b8f41957
2 changed files with 10 additions and 9 deletions
|
@ -593,7 +593,8 @@ typedef struct CPUX86State {
|
|||
|
||||
/* FPU state */
|
||||
unsigned int fpstt; /* top of stack index */
|
||||
unsigned int fpus;
|
||||
uint16_t fpus;
|
||||
uint16_t fpus_vmstate;
|
||||
uint16_t fpuc;
|
||||
uint8_t fptags[8]; /* 0 = valid, 1 = empty */
|
||||
union {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue