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 @@ -2296,12 +2296,6 @@ pub fn round_ties_even_f16(x: f16) -> f16;
2296
2296
#[ rustc_nounwind]
2297
2297
pub fn round_ties_even_f32 ( x : f32 ) -> f32 ;
2298
2298
2299
- /// Provided for compatibility with stdarch. DO NOT USE.
2300
- #[ inline( always) ]
2301
- pub unsafe fn rintf32 ( x : f32 ) -> f32 {
2302
- round_ties_even_f32 ( x)
2303
- }
2304
-
2305
2299
/// Returns the nearest integer to an `f64`. Rounds half-way cases to the number with an even
2306
2300
/// least significant digit.
2307
2301
///
@@ -2311,12 +2305,6 @@ pub unsafe fn rintf32(x: f32) -> f32 {
2311
2305
#[ rustc_nounwind]
2312
2306
pub fn round_ties_even_f64 ( x : f64 ) -> f64 ;
2313
2307
2314
- /// Provided for compatibility with stdarch. DO NOT USE.
2315
- #[ inline( always) ]
2316
- pub unsafe fn rintf64 ( x : f64 ) -> f64 {
2317
- round_ties_even_f64 ( x)
2318
- }
2319
-
2320
2308
/// Returns the nearest integer to an `f128`. Rounds half-way cases to the number with an even
2321
2309
/// least significant digit.
2322
2310
///
You can’t perform that action at this time.
0 commit comments