Core: Remove unused mmx stuff

This commit is contained in:
TellowKrinkle 2021-09-02 17:42:47 -05:00 committed by Kojin
parent 5260d63565
commit dae8e0d233
1 changed files with 1 additions and 4 deletions

View File

@ -62,12 +62,9 @@ void _flushEEreg(int reg)
_deleteGPRtoXMMreg(reg, 1);
}
// if not mmx, then xmm
int eeProcessHILO(int reg, int mode, int mmx)
{
// Fixme: MMX problem
int usemmx = 0;
if ((usemmx || _hasFreeXMMreg()) || !(g_pCurInstInfo->regs[reg] & EEINST_LASTUSE))
if (_hasFreeXMMreg() || !(g_pCurInstInfo->regs[reg] & EEINST_LASTUSE))
{
return _allocGPRtoXMMreg(-1, reg, mode);
}