x64Emitter: drop duplicate enum & unused wrappers

Keep the more explicit version of the two SSECompare enums.

And the unused CMP* wrappers wouldn't exactly make the code more
readable anyway.
This commit is contained in:
Tillmann Karras
2015-05-31 08:32:31 +02:00
parent 43ed19a663
commit eb057d49a0
2 changed files with 3 additions and 23 deletions

View File

@ -282,9 +282,9 @@ void Jit64::fselx(UGeckoInstruction inst)
// negative/positive zero and NaN properly.
// (a >= -0.0 ? c : b) transforms into (0 > a ? b : c), hence the NLE.
if (packed)
CMPPD(XMM0, fpr.R(a), NLE);
CMPPD(XMM0, fpr.R(a), CMP_NLE);
else
CMPSD(XMM0, fpr.R(a), NLE);
CMPSD(XMM0, fpr.R(a), CMP_NLE);
if (cpu_info.bSSE4_1)
{