Skip to content

Commit

Permalink
target-i386: Define MMXReg._d field
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
ehabkost committed Jan 21, 2016
1 parent 19cbd87 commit 9253e1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion target-i386/cpu.h
Expand Up @@ -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 {
Expand Down

0 comments on commit 9253e1a

Please sign in to comment.