mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-24 19:27:27 +00:00
JitArm64: Fix jit clearing
We have to reset m_lastCacheFlushEnd on clearing.
This commit is contained in:
parent
70e91af405
commit
9bfff0d461
3 changed files with 11 additions and 6 deletions
|
@ -268,11 +268,15 @@ bool IsImmLogical(uint64_t value, unsigned int width, unsigned int *n, unsigned
|
|||
return true;
|
||||
}
|
||||
|
||||
void ARM64XEmitter::SetCodePtr(u8* ptr)
|
||||
void ARM64XEmitter::SetCodePtrUnsafe(u8* ptr)
|
||||
{
|
||||
m_code = ptr;
|
||||
if (!m_lastCacheFlushEnd)
|
||||
m_lastCacheFlushEnd = ptr;
|
||||
}
|
||||
|
||||
void ARM64XEmitter::SetCodePtr(u8* ptr)
|
||||
{
|
||||
SetCodePtrUnsafe(ptr);
|
||||
m_lastCacheFlushEnd = ptr;
|
||||
}
|
||||
|
||||
const u8* ARM64XEmitter::GetCodePtr() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue