From 57037a69f95dc47625f466f7ac3fd9e7fdd4f0e0 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Wed, 11 Aug 2021 03:26:06 +0200 Subject: [PATCH] PowerPC: Call InvalidateICacheLine() in InstructionCache::Invalidate() for clarity. --- Source/Core/Core/PowerPC/PPCCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/PPCCache.cpp b/Source/Core/Core/PowerPC/PPCCache.cpp index aff844fdff..2e0ccd7159 100644 --- a/Source/Core/Core/PowerPC/PPCCache.cpp +++ b/Source/Core/Core/PowerPC/PPCCache.cpp @@ -128,7 +128,7 @@ void InstructionCache::Invalidate(u32 addr) } } valid[set] = 0; - JitInterface::InvalidateICache(addr & ~0x1f, 32, false); + JitInterface::InvalidateICacheLine(addr); } u32 InstructionCache::ReadInstruction(u32 addr)