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 012c0bc commit ff6913bCopy full SHA for ff6913b
src/float.rs
@@ -2465,6 +2465,8 @@ mod tests {
2465
test_integer_decode(sign_f * f32::MAX, (0xffffff, 104, sign));
2466
test_integer_decode(sign_f * f32::INFINITY, (0x800000, 105, sign));
2467
}
2468
+ // FIXME: Unclear if we should be able to recover NaN inputs
2469
+ // check(f32::NAN, 0xc00000, 105, 1);
2470
2471
2472
#[test]
@@ -2487,6 +2489,8 @@ mod tests {
2487
2489
test_integer_decode(sign_f * f64::MAX, (0x1fffffffffffff, 971, sign));
2488
2490
test_integer_decode(sign_f * f64::INFINITY, (0x10000000000000, 972, sign));
2491
2492
2493
+ // check(f64::NAN, 0x18000000000000, 972, 1);
2494
2495
2496
0 commit comments