JitArm64_Paired: Fix ps_msub when d == b
This commit is contained in:
parent
2147707641
commit
a10447eae2
|
@ -162,7 +162,7 @@ void JitArm64::ps_maddXX(UGeckoInstruction inst)
|
||||||
{
|
{
|
||||||
// d = -(-a * c + b)
|
// d = -(-a * c + b)
|
||||||
// rounding is incorrect if the rounding mode is +/- infinity
|
// 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);
|
m_float_emit.FNEG(size, VD, VD);
|
||||||
}
|
}
|
||||||
else if (d != a && d != c)
|
else if (d != a && d != c)
|
||||||
|
|
Loading…
Reference in New Issue