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
Auto merge of rust-lang#129385 - tgross35:more-platforms-enable-f16, r=Mark-Simulacrum
Enable `f16` tests on platforms that were missing conversion symbols
The only requirement for `f16` support, aside from LLVM not crashing and no ABI issues, is that symbols to convert to and from `f32` are available. Since the update to compiler-builtins in rust-lang#125016, we now provide these on all platforms.
This also enables `f16` math since there are no further requirements.
Still excluded are platforms for which LLVM emits infinitely-recursing code.
try-job: arm-android
try-job: test-various
try-job: x86_64-fuchsia
// Apple has a special ABI for `f16` that we do not yet support
109
106
// FIXME(builtins): fixed by <https://github.com/rust-lang/compiler-builtins/pull/675>
// Most OSs are missing `__extendhfsf` and `__truncsfhf`
118
-
(_,"linux" | "macos") => true,
119
-
// Almost all OSs besides Linux and MacOS are missing symbols until compiler-builtins can
120
-
// be updated. <https://github.com/rust-lang/rust/pull/125016> will get some of these, the
121
-
// next CB update should get the rest.
122
-
_ => false,
114
+
("sparc" | "sparc64", _) => false,
115
+
("wasm32" | "wasm64", _) => false,
116
+
// `f16` support only requires that symbols converting to and from `f32` are available. We
117
+
// provide these in `compiler-builtins`, so `f16` should be available on all platforms that
118
+
// do not have other ABI issues or LLVM crashes.
119
+
_ => true,
123
120
};
124
121
125
122
let has_reliable_f128 = match(target_arch.as_str(), target_os.as_str()){
0 commit comments