mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
x86jit: Ensure we don't sequence temps+regs.
This commit is contained in:
parent
23e3916a77
commit
9cfe801075
1 changed files with 2 additions and 2 deletions
|
@ -611,9 +611,9 @@ void FPURegCache::StoreFromRegister(int i) {
|
|||
if (mri[j] == -1) {
|
||||
break;
|
||||
}
|
||||
if (mri[j] - 32 >= 128 && mri[j] == mri[j - 1] + 1) {
|
||||
if (mri[j] - 32 >= 128 && mri[j - 1] - 32 >= 128 && mri[j] == mri[j - 1] + 1) {
|
||||
seq++;
|
||||
} else if (mri[j] - 32 < 128 && voffset[mri[j] - 32] == voffset[mri[j - 1] - 32] + 1) {
|
||||
} else if (mri[j] - 32 < 128 && mri[j - 1] - 32 < 128 && voffset[mri[j] - 32] == voffset[mri[j - 1] - 32] + 1) {
|
||||
seq++;
|
||||
} else {
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue