Merge pull request #1603 from FioraAeterna/nofastinterrupts

JIT: remove "fast interrupts" option set and then used nowhere
This commit is contained in:
Ryan Houdek 2014-11-28 22:37:52 -06:00
commit 1a85df0459
3 changed files with 0 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -64,7 +64,6 @@ protected:
bool enableBlocklink;
bool fpAccurateFcmp;
bool optimizeGatherPipe;
bool fastInterrupts;
bool accurateSinglePrecision;
};
struct JitState