We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
f128 -> f16
1 parent 0ccc1bf commit be9acefCopy full SHA for be9acef
testcrate/build.rs
@@ -37,13 +37,10 @@ fn main() {
37
features.insert(Feature::NoSysF16F128Convert);
38
}
39
40
- if target.starts_with("i586") || target.starts_with("i686") {
+ if target.starts_with("i586") {
41
// 32-bit x86 seems to not have `__fixunstfti`, but does have everything else
42
features.insert(Feature::NoSysF128IntConvert);
43
- }
44
-
45
- if target.contains("-unknown-linux-") {
46
- // No `__extendhftf2` on x86, no `__trunctfhf2` on aarch64
+ // FIXME: i586 has a bg in `f128 -> f16`
47
48
49
0 commit comments