File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff 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" ) ) ) ]
161161mod 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}
You can’t perform that action at this time.
0 commit comments