From f4fed0dea0e34a4520ef74ca64660a54a8d972fd Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 1 Nov 2014 16:37:15 +0100 Subject: [PATCH] JitAsm: remove unused code pointers --- Source/Core/Core/PowerPC/Jit64/JitAsm.cpp | 1 - Source/Core/Core/PowerPC/JitCommon/JitAsmCommon.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp b/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp index 7adb93d3b1..6e3799e387 100644 --- a/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp +++ b/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp @@ -83,7 +83,6 @@ void Jit64AsmRoutineManager::Generate() dispatcherNoCheck = GetCodePtr(); MOV(32, R(RSCRATCH), PPCSTATE(pc)); - dispatcherPcInRSCRATCH = GetCodePtr(); u32 mask = 0; FixupBranch no_mem; diff --git a/Source/Core/Core/PowerPC/JitCommon/JitAsmCommon.h b/Source/Core/Core/PowerPC/JitCommon/JitAsmCommon.h index c3f6a69b5c..d13859ff1f 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitAsmCommon.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitAsmCommon.h @@ -20,9 +20,7 @@ public: const u8 *dispatcherMispredictedBLR; const u8 *dispatcher; const u8 *dispatcherNoCheck; - const u8 *dispatcherPcInRSCRATCH; - const u8 *dispatchPcInRSCRATCH; const u8 *doTiming; const u8 *frsqrte;