Core/Jits: Adds an option to disable the register cache.

This will help to disable all inter-instruction dependencies.
So android users can check if only a single instruction is broken without compiling dolphin on their own.
This commit is contained in:
degasus
2019-11-16 11:25:26 +01:00
parent fe39e1e6d8
commit 3ebcc445de
9 changed files with 45 additions and 10 deletions

View File

@ -105,6 +105,7 @@ struct SConfig
bool bJITPairedOff = false;
bool bJITSystemRegistersOff = false;
bool bJITBranchOff = false;
bool bJITRegisterCacheOff = false;
bool bFastmem;
bool bFPRF = false;