mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 01:59:52 -06:00
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:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user