From: Eduardo Habkost Date: Thu, 19 Nov 2015 18:51:36 +0000 (-0200) Subject: target-i386: Use a _q array on MMXReg too X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9618f40f06e90c8fa8ae06b56c7404a7cc937e22;p=people%2Fliuw%2Flibxenctrl-split%2Fqemu-xen.git target-i386: Use a _q array on MMXReg too Make MMXReg use the same field names used on XMMReg, so we can try to reuse macros and other code later. Signed-off-by: Eduardo Habkost --- diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 172d6c7a9..15e325ee7 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -739,7 +739,7 @@ typedef union { uint16_t _w[4]; uint32_t _l[2]; float32 _s[2]; - uint64_t q; + uint64_t _q[1]; } MMXReg; typedef struct BNDReg { @@ -777,7 +777,7 @@ typedef struct BNDCSReg { #define MMX_L(n) _l[n] #define MMX_S(n) _s[n] #endif -#define MMX_Q(n) q +#define MMX_Q(n) _q[n] typedef union { floatx80 d __attribute__((aligned(16)));