mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 12:34:35 +03:00
Fixed structure alignment linker warning (MSVC) related to Operand.
This commit is contained in:
@@ -26,12 +26,11 @@ struct Operand {
|
|||||||
uint8_t reserved_2_1;
|
uint8_t reserved_2_1;
|
||||||
uint8_t reserved_3_1;
|
uint8_t reserved_3_1;
|
||||||
uint32_t id;
|
uint32_t id;
|
||||||
uint32_t reserved_8_4;
|
uint64_t reserved_8_8;
|
||||||
uint32_t reserved_12_4;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
ASMJIT_VAR const Operand noOperand;
|
ASMJIT_VAR const Operand noOperand;
|
||||||
const Operand noOperand = { 0, 0, 0, 0, kInvalidValue, 0, 0 };
|
const Operand noOperand = { 0, 0, 0, 0, kInvalidValue, 0 };
|
||||||
|
|
||||||
} // asmjit namespace
|
} // asmjit namespace
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user