aboutsummaryrefslogtreecommitdiff
path: root/src/math/floorf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/floorf.rs')
-rw-r--r--src/math/floorf.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/math/floorf.rs b/src/math/floorf.rs
index 287f086..dfdab91 100644
--- a/src/math/floorf.rs
+++ b/src/math/floorf.rs
@@ -40,6 +40,8 @@ pub fn floorf(x: f32) -> f32 {
f32::from_bits(ui)
}
+// 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::*;