3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ macro_rules! cmp {
22
22
} ;
23
23
}
24
24
25
+ // PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
26
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
25
27
#[ test]
26
28
fn float_comparisons ( ) {
27
29
use compiler_builtins:: float:: cmp:: {
Original file line number Diff line number Diff line change @@ -95,6 +95,8 @@ macro_rules! f_to_i {
95
95
} ;
96
96
}
97
97
98
+ // PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
99
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
98
100
#[ test]
99
101
fn float_to_int ( ) {
100
102
use compiler_builtins:: float:: conv:: {
Original file line number Diff line number Diff line change @@ -111,6 +111,8 @@ macro_rules! extend {
111
111
} ;
112
112
}
113
113
114
+ // PowerPC tests are failing on LLVM 13: https://github.com/rust-lang/rust/issues/88520
115
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
114
116
#[ test]
115
117
fn float_extend ( ) {
116
118
use compiler_builtins:: float:: extend:: __extendsfdf2;
0 commit comments