a64_jitstate: Zero SP and PC on construction of A64JitState
Given we zero out/reset everything else in the struct, do the same for these members to keep initialization consistent
This commit is contained in:
parent
e33ba25d8a
commit
e08c1bdae1
@ -27,8 +27,8 @@ struct A64JitState {
|
||||
A64JitState() { ResetRSB(); }
|
||||
|
||||
std::array<u64, 31> reg{};
|
||||
u64 sp;
|
||||
u64 pc;
|
||||
u64 sp = 0;
|
||||
u64 pc = 0;
|
||||
|
||||
u32 CPSR_nzcv = 0;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user