mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
PowerPC: Handle translation if range given to InvalidateICache spans multiple BAT or Page Table pages.
This commit is contained in:
@ -226,7 +226,8 @@ void InvalidateICache(u32 address, u32 size, bool forced)
|
||||
|
||||
void InvalidateICacheLine(u32 address)
|
||||
{
|
||||
InvalidateICache(address & ~0x1f, 32, false);
|
||||
if (g_jit)
|
||||
g_jit->GetBlockCache()->InvalidateICacheLine(address);
|
||||
}
|
||||
|
||||
void CompileExceptionCheck(ExceptionType type)
|
||||
|
Reference in New Issue
Block a user