Skip to content

Commit 396c5ca

Browse files
committed
clean up old rintf leftovers
1 parent 3d86494 commit 396c5ca

File tree

1 file changed

+0
-12
lines changed
  • library/core/src/intrinsics

1 file changed

+0
-12
lines changed

library/core/src/intrinsics/mod.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2296,12 +2296,6 @@ pub fn round_ties_even_f16(x: f16) -> f16;
22962296
#[rustc_nounwind]
22972297
pub fn round_ties_even_f32(x: f32) -> f32;
22982298

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-
23052299
/// Returns the nearest integer to an `f64`. Rounds half-way cases to the number with an even
23062300
/// least significant digit.
23072301
///
@@ -2311,12 +2305,6 @@ pub unsafe fn rintf32(x: f32) -> f32 {
23112305
#[rustc_nounwind]
23122306
pub fn round_ties_even_f64(x: f64) -> f64;
23132307

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-
23202308
/// Returns the nearest integer to an `f128`. Rounds half-way cases to the number with an even
23212309
/// least significant digit.
23222310
///

0 commit comments

Comments
 (0)