1
1
// makes configuration easier
2
2
#![ allow( unused_macros) ]
3
+ #![ feature( f128) ]
3
4
4
5
use testcrate:: * ;
5
6
@@ -96,7 +97,7 @@ fn leading_zeros() {
96
97
// https://github.com/rust-lang/rust/issues/73920.
97
98
// TODO how do we resolve this indeterminacy?
98
99
macro_rules! pow {
99
- ( $( $f: ty, $tolerance: expr, $fn: ident) ;* ; ) => {
100
+ ( $( $f: ty, $tolerance: expr, $fn: ident) ;* ; ) => {
100
101
$(
101
102
fuzz_float_2( N , |x: $f, y: $f| {
102
103
if !( Float :: is_subnormal( x) || Float :: is_subnormal( y) || x. is_nan( ) ) {
@@ -123,7 +124,7 @@ macro_rules! pow {
123
124
} ;
124
125
if !good {
125
126
panic!(
126
- "{}({}, {}): std: {}, builtins: {}" ,
127
+ "{}({:? }, {:? }): std: {:? }, builtins: {:? }" ,
127
128
stringify!( $fn) , x, n, tmp0, tmp1
128
129
) ;
129
130
}
@@ -143,4 +144,11 @@ fn float_pow() {
143
144
f32 , 1e-4 , __powisf2;
144
145
f64 , 1e-12 , __powidf2;
145
146
) ;
147
+
148
+ #[ cfg( not( feature = "no-f16-f128" ) ) ]
149
+ {
150
+ use compiler_builtins:: float:: pow:: __powitf2;
151
+
152
+ pow ! ( f128, 1e-24 , __powitf2; ) ;
153
+ }
146
154
}
0 commit comments