diff mbox

[5/7] target-i386: Define MMXReg._d field

Message ID 1448907702-24815-6-git-send-email-ehabkost@redhat.com
State New
Headers show

Commit Message

Eduardo Habkost Nov. 30, 2015, 6:21 p.m. UTC
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>
---
 target-i386/cpu.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/target-i386/cpu.h b/target-i386/cpu.h
index 614197f..7519023 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 {