We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e924310 commit ea713d5Copy full SHA for ea713d5
src/float.rs
@@ -2471,6 +2471,8 @@ mod tests {
2471
check(sign_f * f32::MAX, 0xffffff, 104, sign);
2472
check(sign_f * f32::INFINITY, 0x800000, 105, sign);
2473
}
2474
+ // FIXME: Unclear if we should be able to recover NaN inputs
2475
+ // check(f32::NAN, 0xc00000, 105, 1);
2476
2477
2478
#[test]
@@ -2495,6 +2497,8 @@ mod tests {
2495
2497
check(sign_f * f64::MAX, 0x1fffffffffffff, 971, sign);
2496
2498
check(sign_f * f64::INFINITY, 0x10000000000000, 972, sign);
2499
2500
2501
+ // check(f64::NAN, 0x18000000000000, 972, 1);
2502
2503
2504
0 commit comments