Merge pull request #3277 from Sonicadvance1/remove_warnings_17

FEXCore: Removes FEX_PACKED from CPUState
This commit is contained in:
Alyssa Rosenzweig 2023-11-28 19:11:18 -04:00 committed by GitHub
commit 8e892ece59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ namespace FEXCore::Core {
static_assert(std::is_trivially_copyable_v<NonAtomicRefCounter<uint64_t>>, "needs to be trivially copyable");
static_assert(sizeof(NonAtomicRefCounter<uint64_t>) == sizeof(uint64_t), "Needs to be correct size");
struct FEX_PACKED CPUState {
struct CPUState {
// Allows more efficient handling of the register
// file in the event AVX is not supported.
union XMMRegs {