We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2f9db commit 40d1f29Copy full SHA for 40d1f29
testcrate/build.rs
@@ -38,10 +38,10 @@ fn main() {
38
}
39
40
if target.starts_with("i586") || target.starts_with("i686") {
41
- // 32-bit x86 without SSE seems to not have `__fixunstfti`, but does have everything else
+ // 32-bit x86 does not have `__fixunstfti`/`__fixtfti` but does have everything else
42
features.insert(Feature::NoSysF128IntConvert);
43
// FIXME: i586 has a bug in `f128 -> f16`
44
- // features.insert(Feature::NoSysF16F128Convert);
+ features.insert(Feature::NoSysF16F128Convert);
45
46
47
if target.starts_with("wasm32-") {
0 commit comments