mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
irjit: Allow VV2Op SIMD with exact overlap.
None of these look at other lanes.
This commit is contained in:
parent
2419e5680a
commit
ada0674415
1 changed files with 1 additions and 1 deletions
|
@ -795,7 +795,7 @@ namespace MIPSComp {
|
|||
bool usingTemps = false;
|
||||
u8 tempregs[4];
|
||||
for (int i = 0; i < n; ++i) {
|
||||
if (!IsOverlapSafe(dregs[i], n, sregs)) {
|
||||
if (!IsOverlapSafeAllowS(dregs[i], i, n, sregs)) {
|
||||
usingTemps = true;
|
||||
tempregs[i] = IRVTEMP_0 + i;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue