backend/x64: Move save_host_MXCSR from JitState to stack

This commit is contained in:
MerryMage 2021-05-04 14:19:05 +01:00
parent ddbc50cee0
commit a1950d1d2f
5 changed files with 4 additions and 6 deletions

View file

@ -15,6 +15,8 @@ constexpr size_t SpillCount = 64;
struct alignas(16) StackLayout {
std::array<std::array<u64, 2>, SpillCount> spill;
u32 save_host_MXCSR;
};
static_assert(sizeof(StackLayout) % 16 == 0);