@@ -23,7 +23,7 @@ fn main() {
23
23
|| target. contains ( "windows-gnu" )
24
24
// FIXME(llvm): There is an ABI incompatibility between GCC and Clang on 32-bit x86.
25
25
// See <https://github.com/llvm/llvm-project/issues/77401>.
26
- || target. starts_with ( "i686" )
26
+ // || target.starts_with("i686")
27
27
// 32-bit PowerPC and 64-bit LE gets code generated that Qemu cannot handle. See
28
28
// <https://github.com/rust-lang/compiler-builtins/pull/606#issuecomment-2105635926>.
29
29
|| target. starts_with ( "powerpc-" )
@@ -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") {
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
0 commit comments