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 2905546 commit 9b7aedaCopy full SHA for 9b7aeda
builtins-test/tests/conv.rs
@@ -75,8 +75,12 @@ mod i_to_f {
75
}
76
77
// Test against native conversion. We disable testing on all `x86` because of
78
- // rounding bugs with `i686`.
79
- if !Float::eq_repr(f0, f1) && !cfg!(target_arch = "x86") {
+ // rounding bugs with `i686`. `powerpc` also has the same rounding bug.
+ if !Float::eq_repr(f0, f1) && !cfg!(any(
80
+ target_arch = "x86",
81
+ target_arch = "powerpc",
82
+ target_arch = "powerpc64"
83
+ )) {
84
panic!(
85
"{}({}): std: {:?}, builtins: {:?}",
86
stringify!($fn),
0 commit comments