Skip to content

Commit

Permalink
Merge pull request #1603 from FioraAeterna/nofastinterrupts
Browse files Browse the repository at this point in the history
JIT: remove "fast interrupts" option set and then used nowhere
  • Loading branch information
Sonicadvance1 committed Nov 29, 2014
2 parents 2d2baec + 41f5ef3 commit 1a85df0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion Source/Core/Core/PowerPC/Jit64/Jit.cpp
Expand Up @@ -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;

Expand Down
1 change: 0 additions & 1 deletion Source/Core/Core/PowerPC/Jit64IL/JitIL.cpp
Expand Up @@ -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;

Expand Down
1 change: 0 additions & 1 deletion Source/Core/Core/PowerPC/JitCommon/JitBase.h
Expand Up @@ -64,7 +64,6 @@ class JitBase : public CPUCoreBase
bool enableBlocklink;
bool fpAccurateFcmp;
bool optimizeGatherPipe;
bool fastInterrupts;
bool accurateSinglePrecision;
};
struct JitState
Expand Down

0 comments on commit 1a85df0

Please sign in to comment.