Fixed structure alignment linker warning (MSVC) related to Operand.

This commit is contained in:
kobalicek
2014-09-15 09:12:19 +02:00
parent 9ead0cfb4c
commit cf3b6ccb5b

View File

@@ -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