From 41f5ef3304a9c49ce1a8c70f22f50eb6fa6ea008 Mon Sep 17 00:00:00 2001 From: Fiora Date: Fri, 28 Nov 2014 06:42:40 -0800 Subject: [PATCH] JIT: remove "fast interrupts" option set and then used nowhere --- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 1 - Source/Core/Core/PowerPC/Jit64IL/JitIL.cpp | 1 - Source/Core/Core/PowerPC/JitCommon/JitBase.h | 1 - 3 files changed, 3 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index 044529b1753a..180027b33d21 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -178,7 +178,6 @@ void Jit64::Init() jo.fpAccurateFcmp = SConfig::GetInstance().m_LocalCoreStartupParameter.bFPRF; jo.optimizeGatherPipe = true; - jo.fastInterrupts = false; jo.accurateSinglePrecision = true; js.memcheck = SConfig::GetInstance().m_LocalCoreStartupParameter.bMMU; diff --git a/Source/Core/Core/PowerPC/Jit64IL/JitIL.cpp b/Source/Core/Core/PowerPC/Jit64IL/JitIL.cpp index acb57f8a1403..7401b671a6e2 100644 --- a/Source/Core/Core/PowerPC/Jit64IL/JitIL.cpp +++ b/Source/Core/Core/PowerPC/Jit64IL/JitIL.cpp @@ -248,7 +248,6 @@ void JitIL::Init() jo.fpAccurateFcmp = false; jo.optimizeGatherPipe = true; - jo.fastInterrupts = false; jo.accurateSinglePrecision = false; js.memcheck = SConfig::GetInstance().m_LocalCoreStartupParameter.bMMU; diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.h b/Source/Core/Core/PowerPC/JitCommon/JitBase.h index 845db78b018e..1d01e7615d5a 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.h +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.h @@ -64,7 +64,6 @@ class JitBase : public CPUCoreBase bool enableBlocklink; bool fpAccurateFcmp; bool optimizeGatherPipe; - bool fastInterrupts; bool accurateSinglePrecision; }; struct JitState