Skip to content
Permalink
Browse files
Merge pull request #8919 from MerryMage/fma
JitArm64_Paired: Fix ps_msub when d == b
  • Loading branch information
JosJuice committed Jul 1, 2020
2 parents 2147707 + a10447e commit 38b3653
Showing 1 changed file with 1 addition and 1 deletion.
@@ -162,7 +162,7 @@ void JitArm64::ps_maddXX(UGeckoInstruction inst)
{
// d = -(-a * c + b)
// rounding is incorrect if the rounding mode is +/- infinity
m_float_emit.FMLS(size, VD, VB, VC);
m_float_emit.FMLS(size, VD, VA, VC);
m_float_emit.FNEG(size, VD, VD);
}
else if (d != a && d != c)

0 comments on commit 38b3653

Please sign in to comment.