You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the `compiler_builtins` update [1], ABI bugs on x86 should be
resolved. Enable tests for f16 on these platforms now.
`f16` math functions (`reliable_f16_math`) are still excluded because
there is an LLVM crash for powi [2].
[1]: rust-lang#125016
[2]: llvm/llvm-project#105747
Copy file name to clipboardExpand all lines: std/build.rs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -103,9 +103,9 @@ fn main() {
103
103
("arm64ec", _) => false,
104
104
// MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054>
105
105
("x86_64","windows") => false,
106
-
// x86 has ABI bugs that show up with optimizations. This should be partially fixed with
107
-
// the compiler-builtins update. <https://github.com/rust-lang/rust/issues/123885>
108
-
("x86" | "x86_64", _) => false,
106
+
// Apple has a special ABI for `f16` that we do not yet support
107
+
// FIXME(builtins): fixed by <https://github.com/rust-lang/compiler-builtins/pull/675>
0 commit comments