We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2be2bc0 commit cf94e8eCopy full SHA for cf94e8e
testcrate/tests/cmp.rs
@@ -22,6 +22,8 @@ macro_rules! cmp {
22
};
23
}
24
25
+// PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
26
+#[cfg(not(target_arch = "powerpc64"))]
27
#[test]
28
fn float_comparisons() {
29
use compiler_builtins::float::cmp::{
testcrate/tests/conv.rs
@@ -95,6 +95,8 @@ macro_rules! f_to_i {
95
96
97
98
99
100
101
fn float_to_int() {
102
use compiler_builtins::float::conv::{
0 commit comments