Fixed bug introduced by commit 1a73e65534

This commit is contained in:
kobalicek
2014-05-23 00:06:10 +02:00
parent 1cb47ce497
commit f112305d54

View File

@@ -280,14 +280,16 @@ struct RegMask {
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
union { union {
//! Gp mask (16-bit). struct {
uint16_t _gp; //! Gp mask (16-bit).
//! Fp mask (8-bit). uint16_t _gp;
uint8_t _fp; //! Fp mask (8-bit).
//! Mm mask (8-bit). uint8_t _fp;
uint8_t _mm; //! Mm mask (8-bit).
//! Xmm/Ymm/Zmm mask (32-bit). uint8_t _mm;
uint32_t _xyz; //! Xmm/Ymm/Zmm mask (32-bit).
uint32_t _xyz;
};
//! All masks as 64-bit integer. //! All masks as 64-bit integer.
UInt64 _packed; UInt64 _packed;