Skip to content

Commit 40d1f29

Browse files
committed
tests
1 parent 4c2f9db commit 40d1f29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcrate/build.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ fn main() {
3838
}
3939

4040
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
41+
// 32-bit x86 does not have `__fixunstfti`/`__fixtfti` but does have everything else
4242
features.insert(Feature::NoSysF128IntConvert);
4343
// FIXME: i586 has a bug in `f128 -> f16`
44-
// features.insert(Feature::NoSysF16F128Convert);
44+
features.insert(Feature::NoSysF16F128Convert);
4545
}
4646

4747
if target.starts_with("wasm32-") {

0 commit comments

Comments
 (0)