mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 15:59:23 +01:00
Initialize linkStatus to false in the ARM JIT cores as well.
This commit is contained in:
parent
22b86e64f5
commit
c5b8c65ddc
@ -196,6 +196,7 @@ void JitArm::WriteExit(u32 destination)
|
||||
JitBlock::LinkData linkData;
|
||||
linkData.exitAddress = destination;
|
||||
linkData.exitPtrs = GetWritableCodePtr();
|
||||
linkData.linkStatus = false;
|
||||
|
||||
// Link opportunity!
|
||||
int block = blocks.GetBlockNumberFromStartAddress(destination);
|
||||
|
@ -125,6 +125,7 @@ void JitArmIL::WriteExit(u32 destination)
|
||||
JitBlock::LinkData linkData;
|
||||
linkData.exitAddress = destination;
|
||||
linkData.exitPtrs = GetWritableCodePtr();
|
||||
linkData.linkStatus = false;
|
||||
|
||||
// Link opportunity!
|
||||
int block = blocks.GetBlockNumberFromStartAddress(destination);
|
||||
|
Loading…
x
Reference in New Issue
Block a user