mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix simd vmmul transpose optimizations.
Yep, gotta discard the S matrix when we're done with it.
This commit is contained in:
parent
0fdebdc1ca
commit
54c7a12306
1 changed files with 5 additions and 0 deletions
|
@ -2726,6 +2726,11 @@ void Jit::Comp_Vmmul(MIPSOpcode op) {
|
|||
#endif
|
||||
MOVAPS(fpr.VS(dcol), XMM1);
|
||||
}
|
||||
if (transposeS){
|
||||
for (int i = 0; i < n; i++){
|
||||
fpr.DiscardVS(scols[i]);
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef _M_X64
|
||||
fpr.ReleaseSpillLocks();
|
||||
|
|
Loading…
Add table
Reference in a new issue