Skip to content

Commit e518451

Browse files
committed
Enable f16 on x86 and x86-64
Since the `compiler_builtins` update [1], ABI bugs on x86 should be resolved. Enable tests for f16 on these platforms now. [1]: #125016
1 parent 99322d8 commit e518451

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
@@ -95,9 +95,6 @@ fn main() {
9595
("arm64ec", _) => false,
9696
// MinGW ABI bugs <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054>
9797
("x86_64", "windows") => false,
98-
// x86 has ABI bugs that show up with optimizations. This should be partially fixed with
99-
// the compiler-builtins update. <https://github.com/rust-lang/rust/issues/123885>
100-
("x86" | "x86_64", _) => false,
10198
// Missing `__gnu_h2f_ieee` and `__gnu_f2h_ieee`
10299
("powerpc" | "powerpc64", _) => false,
103100
// Missing `__gnu_h2f_ieee` and `__gnu_f2h_ieee`

0 commit comments

Comments
 (0)