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 7f834b7 commit 1df3a8cCopy full SHA for 1df3a8c
library/coretests/tests/num/mod.rs
@@ -1085,7 +1085,13 @@ macro_rules! float_const_assert {
1085
};
1086
}
1087
1088
+#[cfg(any(miri, target_has_reliable_f16_math))]
1089
+test_float!(f16, float_assert, f16);
1090
+test_float!(f16_const, float_const_assert, f16);
1091
test_float!(f32, float_assert, f32);
1092
test_float!(f32_const, float_const_assert, f32);
1093
test_float!(f64, float_assert, f64);
1094
test_float!(f64_const, float_const_assert, f64);
1095
+#[cfg(any(miri, target_has_reliable_f128_math))]
1096
+test_float!(f128, float_assert, f128);
1097
+test_float!(f128_const, float_const_assert, f128);
0 commit comments