Skip to content

Commit 2511cc1

Browse files
committed
Enable f16 tests on x86 Apple platforms
These were disabled because Apple uses a special ABI for `f16`. `compiler-builtins` merged a fix for this in [1], which has since propagated to rust-lang/rust. Enable tests since there should be no remaining issues on these platforms. [1]: rust-lang/compiler-builtins#675
1 parent ed04567 commit 2511cc1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

library/std/build.rs

-3
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,6 @@ fn main() {
102102
("arm64ec", _) => false,
103103
// MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054>
104104
("x86_64", "windows") => false,
105-
// Apple has a special ABI for `f16` that we do not yet support
106-
// FIXME(builtins): fixed by <https://github.com/rust-lang/compiler-builtins/pull/675>
107-
("x86" | "x86_64", _) if target_vendor == "apple" => false,
108105
// Infinite recursion <https://github.com/llvm/llvm-project/issues/97981>
109106
("csky", _) => false,
110107
("hexagon", _) => false,

0 commit comments

Comments
 (0)