Merge pull request #1603 from FioraAeterna/nofastinterrupts
JIT: remove "fast interrupts" option set and then used nowhere
This commit is contained in:
commit
1a85df0459
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -64,7 +64,6 @@ protected:
|
|||
bool enableBlocklink;
|
||||
bool fpAccurateFcmp;
|
||||
bool optimizeGatherPipe;
|
||||
bool fastInterrupts;
|
||||
bool accurateSinglePrecision;
|
||||
};
|
||||
struct JitState
|
||||
|
|
Loading…
Reference in New Issue