Skip to content

Commit fdb0fd1

Browse files
committed
disable all windows
1 parent 241b9a8 commit fdb0fd1

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

testcrate/tests/misc.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -159,19 +159,19 @@ mod float_pow {
159159
#[cfg(not(all(target_arch = "x86", not(target_feature = "sse"))))]
160160
#[cfg(not(any(feature = "no-f16-f128", feature = "no-sys-f128")))]
161161
mod float_pow_f128 {
162-
use super::*;
163-
use core::hint::black_box;
162+
// use super::*;
163+
// use core::hint::black_box;
164164

165165
// Windows can't link the required arithmetic functions. See
166166
// <https://github.com/rust-lang/compiler-builtins/pull/614#issuecomment-2118636613>
167-
#[cfg(not(target_family = "windows"))]
168-
#[cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))]
169-
pow! {
170-
f128, 1e-36, __powitf2;
171-
}
167+
// #[cfg(not(target_family = "windows"))]
168+
// #[cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))]
169+
// pow! {
170+
// f128, 1e-36, __powitf2;
171+
// }
172172

173-
#[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]
174-
pow! {
175-
f128, 1e-36, __powikf2;
176-
}
173+
// #[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]
174+
// pow! {
175+
// f128, 1e-36, __powikf2;
176+
// }
177177
}

0 commit comments

Comments
 (0)