mirror of https://github.com/PCSX2/pcsx2.git
Core: Remove unused mmx stuff
This commit is contained in:
parent
5260d63565
commit
dae8e0d233
|
@ -62,12 +62,9 @@ void _flushEEreg(int reg)
|
||||||
_deleteGPRtoXMMreg(reg, 1);
|
_deleteGPRtoXMMreg(reg, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// if not mmx, then xmm
|
|
||||||
int eeProcessHILO(int reg, int mode, int mmx)
|
int eeProcessHILO(int reg, int mode, int mmx)
|
||||||
{
|
{
|
||||||
// Fixme: MMX problem
|
if (_hasFreeXMMreg() || !(g_pCurInstInfo->regs[reg] & EEINST_LASTUSE))
|
||||||
int usemmx = 0;
|
|
||||||
if ((usemmx || _hasFreeXMMreg()) || !(g_pCurInstInfo->regs[reg] & EEINST_LASTUSE))
|
|
||||||
{
|
{
|
||||||
return _allocGPRtoXMMreg(-1, reg, mode);
|
return _allocGPRtoXMMreg(-1, reg, mode);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue