mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 22:18:16 +01:00
backend/x64: Move save_host_MXCSR from JitState to stack
This commit is contained in:
parent
ddbc50cee0
commit
a1950d1d2f
5 changed files with 4 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue