File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ fn main() {
37
37
features. insert ( Feature :: NoSysF16F128Convert ) ;
38
38
}
39
39
40
- // if target.starts_with("i586") {
41
- // // 32-bit x86 without SSE seems to not have `__fixunstfti`, but does have everything else
42
- // features.insert(Feature::NoSysF128IntConvert);
43
- // // FIXME: i586 has a bug in `f128 -> f16`
44
- // features.insert(Feature::NoSysF16F128Convert);
45
- // }
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
42
+ features. insert ( Feature :: NoSysF128IntConvert ) ;
43
+ // FIXME: i586 has a bug in `f128 -> f16`
44
+ // features.insert(Feature::NoSysF16F128Convert);
45
+ }
46
46
47
47
if target. starts_with ( "wasm32-" ) {
48
48
// Linking says "error: function signature mismatch: __extendhfsf2" and seems to
You can’t perform that action at this time.
0 commit comments