diff --git a/src/math/rint.rs b/src/math/rint.rs index 97d167a..0c6025c 100644 --- a/src/math/rint.rs +++ b/src/math/rint.rs @@ -25,6 +25,8 @@ pub fn rint(x: f64) -> f64 { } } +// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520 +#[cfg(not(target_arch = "powerpc64"))] #[cfg(test)] mod tests { use super::rint; diff --git a/src/math/rintf.rs b/src/math/rintf.rs index 7b87faf..d427793 100644 --- a/src/math/rintf.rs +++ b/src/math/rintf.rs @@ -25,6 +25,8 @@ pub fn rintf(x: f32) -> f32 { } } +// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520 +#[cfg(not(target_arch = "powerpc64"))] #[cfg(test)] mod tests { use super::rintf;