aboutsummaryrefslogtreecommitdiff
path: root/src/math/fabsf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/fabsf.rs')
-rw-r--r--src/math/fabsf.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/math/fabsf.rs b/src/math/fabsf.rs
index 6655c4c..23f3646 100644
--- a/src/math/fabsf.rs
+++ b/src/math/fabsf.rs
@@ -14,6 +14,8 @@ pub fn fabsf(x: f32) -> f32 {
f32::from_bits(x.to_bits() & 0x7fffffff)
}
+// 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::*;