OSDN Git Service

target-i386: Define MMXReg._d field
authorEduardo Habkost <ehabkost@redhat.com>
Mon, 30 Nov 2015 17:44:16 +0000 (15:44 -0200)
committerEduardo Habkost <ehabkost@redhat.com>
Thu, 21 Jan 2016 14:47:16 +0000 (12:47 -0200)
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

index d7a7d01..b41ce82 100644 (file)
@@ -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 {