FloatUtils: Replace quieting SNaNs via 0.0 + x with MakeQuiet

This commit is contained in:
OatmealDome 2025-08-17 11:24:38 -04:00
commit 221d396b3a
No known key found for this signature in database
GPG key ID: A4BFAB0C67513B91

View file

@ -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