Skip to content
Permalink
Browse files
Merge pull request #9127 from Sintendo/fselx-movsd
Jit64: Optimize fsel a bit more
  • Loading branch information
lioncash committed Oct 19, 2020
2 parents cec47b9 + 3499ced commit fc5fbf5
Showing 1 changed file with 2 additions and 2 deletions.
@@ -449,7 +449,7 @@ void Jit64::fselx(UGeckoInstruction inst)
MOVAPD(XMM1, Rc);
}

if (packed)
if (d == c || packed)
{
VBLENDVPD(Rd, src1, Rb, XMM0);
return;
@@ -459,7 +459,7 @@ void Jit64::fselx(UGeckoInstruction inst)
}
else if (cpu_info.bSSE4_1)
{
if (packed && d == c)
if (d == c)
{
BLENDVPD(Rd, Rb);
return;

0 comments on commit fc5fbf5

Please sign in to comment.