aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2015-11-30 15:44:16 -0200
committerEduardo Habkost <ehabkost@redhat.com>2016-01-21 12:47:16 -0200
commit9253e1a7923e94598419ac9a7df7b8bc6cba65a5 (patch)
treee70c0c1c5decc9fc7c58632d11e2af3aa38b2d9f
parent19cbd87c14ab208858ee1233b790f37cfefed4b9 (diff)
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>
-rw-r--r--target-i386/cpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h
index d7a7d012c2..b41ce821c5 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 {