We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c02ee9 commit 276b26eCopy full SHA for 276b26e
src/math/rint.rs
@@ -25,6 +25,8 @@ pub fn rint(x: f64) -> f64 {
25
}
26
27
28
+// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
29
+#[cfg(not(target_arch = "powerpc64"))]
30
#[cfg(test)]
31
mod tests {
32
use super::rint;
src/math/rintf.rs
@@ -25,6 +25,8 @@ pub fn rintf(x: f32) -> f32 {
use super::rintf;
0 commit comments