File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
library/core/src/intrinsics Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -2285,12 +2285,6 @@ pub fn round_ties_even_f16(x: f16) -> f16;
22852285#[ rustc_nounwind]
22862286pub fn round_ties_even_f32 ( x : f32 ) -> f32 ;
22872287
2288- /// Provided for compatibility with stdarch. DO NOT USE.
2289- #[ inline( always) ]
2290- pub unsafe fn rintf32 ( x : f32 ) -> f32 {
2291- round_ties_even_f32 ( x)
2292- }
2293-
22942288/// Returns the nearest integer to an `f64`. Rounds half-way cases to the number with an even
22952289/// least significant digit.
22962290///
@@ -2300,12 +2294,6 @@ pub unsafe fn rintf32(x: f32) -> f32 {
23002294#[ rustc_nounwind]
23012295pub fn round_ties_even_f64 ( x : f64 ) -> f64 ;
23022296
2303- /// Provided for compatibility with stdarch. DO NOT USE.
2304- #[ inline( always) ]
2305- pub unsafe fn rintf64 ( x : f64 ) -> f64 {
2306- round_ties_even_f64 ( x)
2307- }
2308-
23092297/// Returns the nearest integer to an `f128`. Rounds half-way cases to the number with an even
23102298/// least significant digit.
23112299///
You can’t perform that action at this time.
0 commit comments