mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Merge pull request #11715 from JosJuice/dcbx-order
Jit: Change argument order for InvalidateICacheLine(s)FromJIT
This commit is contained in:
@ -257,12 +257,12 @@ void JitInterface::InvalidateICacheLines(u32 address, u32 count)
|
||||
InvalidateICache(address & ~0x1f, 32 * count, false);
|
||||
}
|
||||
|
||||
void JitInterface::InvalidateICacheLineFromJIT(u32 address, u32 dummy, JitInterface& jit_interface)
|
||||
void JitInterface::InvalidateICacheLineFromJIT(JitInterface& jit_interface, u32 address)
|
||||
{
|
||||
jit_interface.InvalidateICacheLine(address);
|
||||
}
|
||||
|
||||
void JitInterface::InvalidateICacheLinesFromJIT(u32 address, u32 count, JitInterface& jit_interface)
|
||||
void JitInterface::InvalidateICacheLinesFromJIT(JitInterface& jit_interface, u32 address, u32 count)
|
||||
{
|
||||
jit_interface.InvalidateICacheLines(address, count);
|
||||
}
|
||||
|
Reference in New Issue
Block a user