mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 20:44:37 +03:00
Fixed bug introduced by commit 1a73e65534
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user