Jit64: Fix FPURegCache::GetRegUtilization
This performance bug was probably a simple copy-paste error. (The function was identical to GPRRegCache::GetRegUtilization.)
This commit is contained in:
parent
5493a86086
commit
9460467e7c
|
@ -39,7 +39,7 @@ OpArg FPURegCache::GetDefaultLocation(preg_t preg) const
|
|||
|
||||
BitSet32 FPURegCache::GetRegUtilization() const
|
||||
{
|
||||
return m_jit.js.op->gprInReg;
|
||||
return m_jit.js.op->fprInXmm;
|
||||
}
|
||||
|
||||
BitSet32 FPURegCache::CountRegsIn(preg_t preg, u32 lookahead) const
|
||||
|
|
Loading…
Reference in New Issue