Skip to content

Commit 300a7f9

Browse files
committed
Remove FIXME related to NaN inputs
1 parent a6e2912 commit 300a7f9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/float.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2470,8 +2470,6 @@ mod tests {
24702470
test_integer_decode(sign_f * f32::MAX, (0xffffff, 104, sign));
24712471
test_integer_decode(sign_f * f32::INFINITY, (0x800000, 105, sign));
24722472
}
2473-
// FIXME: Unclear if we should be able to recover NaN inputs
2474-
// test_integer_decode(f32::NAN, (0xc00000, 105, 1));
24752473
}
24762474

24772475
#[test]
@@ -2494,8 +2492,6 @@ mod tests {
24942492
test_integer_decode(sign_f * f64::MAX, (0x1fffffffffffff, 971, sign));
24952493
test_integer_decode(sign_f * f64::INFINITY, (0x10000000000000, 972, sign));
24962494
}
2497-
// FIXME: Unclear if we should be able to recover NaN inputs
2498-
// test_integer_decode(f64::NAN, (0x18000000000000, 972, 1));
24992495
}
25002496

25012497
#[test]

0 commit comments

Comments
 (0)