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 c468a2a commit 7107dafCopy full SHA for 7107daf
src/math/aggregate.rs
@@ -27,7 +27,7 @@ fn dl_sum(a: f64, b: f64) -> DoubleLength {
27
}
28
29
/// Algorithm 3.5. Error-free transformation of a product using FMA
30
-#[cfg(feature = "mul_add")]
+#[cfg(any(feature = "mul_add", target_os = "windows"))]
31
#[inline]
32
fn dl_mul(x: f64, y: f64) -> DoubleLength {
33
let z = x * y;
@@ -36,7 +36,7 @@ fn dl_mul(x: f64, y: f64) -> DoubleLength {
36
37
38
/// Dekker's algorithm for error-free product without FMA
39
-#[cfg(not(feature = "mul_add"))]
+#[cfg(not(any(feature = "mul_add", target_os = "windows")))]
40
41
42
// Dekker (5.5) and (5.6) - split
0 commit comments