diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-11-30 15:44:16 -0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-01-21 12:47:16 -0200 |
commit | 9253e1a7923e94598419ac9a7df7b8bc6cba65a5 (patch) | |
tree | e70c0c1c5decc9fc7c58632d11e2af3aa38b2d9f /target-i386/cpu.h | |
parent | 19cbd87c14ab208858ee1233b790f37cfefed4b9 (diff) | |
download | qemu-9253e1a7923e94598419ac9a7df7b8bc6cba65a5.zip qemu-9253e1a7923e94598419ac9a7df7b8bc6cba65a5.tar.gz qemu-9253e1a7923e94598419ac9a7df7b8bc6cba65a5.tar.bz2 |
target-i386: Define MMXReg._d field
Add a new field and reorder MMXReg fields, to make MMXReg and
ZMMReg field lists look the same (except for the array sizes).
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index d7a7d01..b41ce82 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -738,8 +738,9 @@ typedef union { uint8_t _b[8]; uint16_t _w[4]; uint32_t _l[2]; - float32 _s[2]; uint64_t _q[1]; + float32 _s[2]; + float64 _d[1]; } MMXReg; typedef struct BNDReg { |