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 4c2659f commit 1c5f8ccCopy full SHA for 1c5f8cc
library/compiler-builtins/libm-test/src/generate/case_list.rs
@@ -269,7 +269,18 @@ fn fma_cases() -> Vec<TestCase<op::fma::Routine>> {
269
}
270
271
fn fmaf_cases() -> Vec<TestCase<op::fmaf::Routine>> {
272
- vec![]
+ let mut v = vec![];
273
+ TestCase::append_pairs(
274
+ &mut v,
275
+ &[
276
+ // Known rounding error for some implementations (notably MinGW)
277
+ (
278
+ (-1.9369631e13f32, 2.1513551e-7, -1.7354427e-24),
279
+ Some(-4167095.8),
280
+ ),
281
+ ],
282
+ );
283
+ v
284
285
286
#[cfg(f128_enabled)]
0 commit comments