aboutsummaryrefslogtreecommitdiff
path: root/src/math/truncf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/truncf.rs')
-rw-r--r--src/math/truncf.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/math/truncf.rs b/src/math/truncf.rs
index a4c0016..20d5b73 100644
--- a/src/math/truncf.rs
+++ b/src/math/truncf.rs
@@ -31,6 +31,8 @@ pub fn truncf(x: f32) -> f32 {
f32::from_bits(i)
}
+// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
+#[cfg(not(target_arch = "powerpc64"))]
#[cfg(test)]
mod tests {
#[test]