From c6ea9eb7c3871021c336a02372c5586bad160137 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 16 Sep 2015 19:15:47 -0400 Subject: [PATCH] JitCache: Remove unused define --- Source/Core/Core/PowerPC/JitCommon/JitCache.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitCommon/JitCache.h b/Source/Core/Core/PowerPC/JitCommon/JitCache.h index a1294b136b..837a36d933 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitCache.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitCache.h @@ -13,10 +13,6 @@ #include "Core/PowerPC/Gekko.h" #include "Core/PowerPC/PPCAnalyst.h" -// emulate CPU with unlimited instruction cache -// the only way to invalidate a region is the "icbi" instruction -#define JIT_UNLIMITED_ICACHE - static const u32 JIT_ICACHE_SIZE = 0x2000000; static const u32 JIT_ICACHE_MASK = 0x1ffffff; static const u32 JIT_ICACHEEX_SIZE = 0x4000000;