mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-08 09:10:57 +02:00
FloatUtils: Replace quieting SNaNs via 0.0 + x
with MakeQuiet
This commit is contained in:
@@ -108,7 +108,7 @@ double ApproximateReciprocalSquareRoot(double val)
|
|||||||
return 0.0;
|
return 0.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0.0 + val;
|
return MakeQuiet(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Negative numbers return NaN
|
// Negative numbers return NaN
|
||||||
@@ -165,7 +165,7 @@ double ApproximateReciprocal(double val)
|
|||||||
{
|
{
|
||||||
if (mantissa == 0)
|
if (mantissa == 0)
|
||||||
return std::copysign(0.0, val);
|
return std::copysign(0.0, val);
|
||||||
return 0.0 + val;
|
return MakeQuiet(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Special case small inputs
|
// Special case small inputs
|
||||||
|
Reference in New Issue
Block a user