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 #126608 - tgross35:f16-f128-library, r=Mark-Simulacrum
Add more constants, functions, and tests for `f16` and `f128`
This adds everything that was in some way blocked on const eval, since #126429 landed. There is a lot of `cfg(bootstrap)` since that is a fairly recent change.
`f128` tests are disabled on everything except x86_64 and Linux aarch64, which are two platforms I know have "good" support for these types - meaning basic math symbols are available and LLVM doesn't hit selection crashes. `f16` tests are enabled on almost everything except for known LLVM crashes. Doctests are only enabled on x86_64.
Tracking issue: #116909
// Most OSs are missing `__extendhfsf` and `__truncsfhf`
106
+
(_,"linux" | "macos") => true,
107
+
// Almost all OSs besides Linux and MacOS are missing symbols until compiler-builtins can
108
+
// be updated. <https://github.com/rust-lang/rust/pull/125016> will get some of these, the
109
+
// next CB update should get the rest.
110
+
_ => false,
111
+
};
112
+
113
+
let has_reliable_f128 = match(target_arch.as_str(), target_os.as_str()){
0 commit comments