mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-04 07:00:51 +00:00
Merge pull request #7217 from hilesaz/master
Fix to VFPU register allocation. Fixes #7174
This commit is contained in:
commit
98f1ac9153
@ -121,7 +121,7 @@ JitOptions::JitOptions()
|
||||
continueBranches = false;
|
||||
continueJumps = false;
|
||||
continueMaxInstructions = 300;
|
||||
enableVFPUSIMD = false;
|
||||
enableVFPUSIMD = true;
|
||||
// Set by Asm if needed.
|
||||
reserveR15ForAsm = false;
|
||||
}
|
||||
|
@ -354,6 +354,9 @@ X64Reg FPURegCache::LoadRegsVS(const u8 *v, int n) {
|
||||
for (int i = 0; i < 4; ++i) {
|
||||
xrsLoaded[i] = false;
|
||||
}
|
||||
for (int i = 2; i < n; ++i){
|
||||
xrs[i] = INVALID_REG;
|
||||
}
|
||||
regsLoaded = 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user