diff --git a/src/math/floor.rs b/src/math/floor.rs index b7d1a04d..2e2e0148 100644 --- a/src/math/floor.rs +++ b/src/math/floor.rs @@ -48,7 +48,6 @@ pub fn floor(x: f64) -> f64 { }; /* special case because of non-nearest rounding modes */ if e < 0x3ff { - force_eval!(y); return if (ui >> 63) != 0 { -1. } else { 0. }; } if y > 0. {