mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07: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 + val;
|
||||
return MakeQuiet(val);
|
||||
}
|
||||
|
||||
// Negative numbers return NaN
|
||||
@@ -165,7 +165,7 @@ double ApproximateReciprocal(double val)
|
||||
{
|
||||
if (mantissa == 0)
|
||||
return std::copysign(0.0, val);
|
||||
return 0.0 + val;
|
||||
return MakeQuiet(val);
|
||||
}
|
||||
|
||||
// Special case small inputs
|
||||
|
||||
Reference in New Issue
Block a user