File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -159,19 +159,19 @@ mod float_pow {
159
159
#[ cfg( not( all( target_arch = "x86" , not( target_feature = "sse" ) ) ) ) ]
160
160
#[ cfg( not( any( feature = "no-f16-f128" , feature = "no-sys-f128" ) ) ) ]
161
161
mod float_pow_f128 {
162
- use super :: * ;
163
- use core:: hint:: black_box;
162
+ // use super::*;
163
+ // use core::hint::black_box;
164
164
165
165
// Windows can't link the required arithmetic functions. See
166
166
// <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
+ // }
172
172
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
+ // }
177
177
}
You can’t perform that action at this time.
0 commit comments