diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-11-19 16:12:40 -0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-01-21 12:47:15 -0200 |
commit | fa4518741ed69aa7993f9c15bb52eacc375681fc (patch) | |
tree | 8e225f39d7da681fee294972f74784bef699fee8 /target-i386/cpu.h | |
parent | 9618f40f06e90c8fa8ae06b56c7404a7cc937e22 (diff) | |
download | qemu-fa4518741ed69aa7993f9c15bb52eacc375681fc.zip qemu-fa4518741ed69aa7993f9c15bb52eacc375681fc.tar.gz qemu-fa4518741ed69aa7993f9c15bb52eacc375681fc.tar.bz2 |
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 <ehabkost@redhat.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 15e325e..372814c 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]; |