Skip to content

Commit df68694

Browse files
committed
temporary commit
1 parent bc156cc commit df68694

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

testcrate/tests/conv.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use testcrate::*;
22

3-
/*
43
macro_rules! i_to_f {
54
($($from:ty, $into:ty, $fn:ident);*;) => {
65
$(
@@ -23,9 +22,10 @@ macro_rules! i_to_f {
2322
&& ((f0.to_bits() & 1) != 0))
2423
{
2524
panic!(
26-
"incorrect rounding by {}({}): ({}, {}, {}), errors ({}, {}, {})",
25+
"incorrect rounding by {}({}): {}, ({}, {}, {}), errors ({}, {}, {})",
2726
stringify!($fn),
2827
x,
28+
f0.to_bits(),
2929
y_minus_ulp,
3030
y,
3131
y_plus_ulp,
@@ -67,7 +67,6 @@ fn int_to_float() {
6767
i128, f64, __floattidf;
6868
);
6969
}
70-
*/
7170

7271
macro_rules! f_to_i {
7372
($x:ident, $($f:ty, $fn:ident);*;) => {

0 commit comments

Comments
 (0)