From fa4518741ed69aa7993f9c15bb52eacc375681fc Mon Sep 17 00:00:00 2001 From: Eduardo Habkost Date: Thu, 19 Nov 2015 16:12:40 -0200 Subject: target-i386: Rename struct XMMReg to ZMMReg The struct represents a 512-bit register, so name it accordingly. This is just a global search+replace, no other changes are being introduced. Signed-off-by: Eduardo Habkost --- target-i386/cpu.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'target-i386/cpu.h') diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 15e325ee75..372814c5f9 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -732,7 +732,7 @@ typedef union { uint64_t _q[8]; float32 _s[16]; float64 _d[8]; -} XMMReg; /* really zmm */ +} ZMMReg; typedef union { uint8_t _b[8]; @@ -865,8 +865,8 @@ typedef struct CPUX86State { float_status mmx_status; /* for 3DNow! float ops */ float_status sse_status; uint32_t mxcsr; - XMMReg xmm_regs[CPU_NB_REGS == 8 ? 8 : 32]; - XMMReg xmm_t0; + ZMMReg xmm_regs[CPU_NB_REGS == 8 ? 8 : 32]; + ZMMReg xmm_t0; MMXReg mmx_t0; uint64_t opmask_regs[NB_OPMASK_REGS]; -- cgit v1.2.3