File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -145,13 +145,14 @@ fn float_pow() {
145
145
f64 , 1e-12 , __powidf2;
146
146
) ;
147
147
148
- #[ cfg( not( feature = "no-f16-f128" ) ) ]
149
- {
150
- #[ cfg( any( target_arch = "powerpc" , target_arch = "powerpc64" ) ) ]
151
- use compiler_builtins:: float:: pow:: __powikf2 as __powitf2;
152
- #[ cfg( not( any( target_arch = "powerpc" , target_arch = "powerpc64" ) ) ) ]
153
- use compiler_builtins:: float:: pow:: __powitf2;
148
+ // FIXME: need powi
149
+ // #[cfg(not(feature = "no-f16-f128"))]
150
+ // {
151
+ // #[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))]
152
+ // use compiler_builtins::float::pow::__powikf2 as __powitf2;
153
+ // #[cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))]
154
+ // use compiler_builtins::float::pow::__powitf2;
154
155
155
- pow ! ( f128, 1e-24 , __powitf2; )
156
- }
156
+ // pow!(f128, 1e-24, __powitf2;)
157
+ // }
157
158
}
You can’t perform that action at this time.
0 commit comments