File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -76,10 +76,8 @@ pub fn configure_f16_f128(target: &Target) {
76
76
// Selection failure <https://github.com/llvm/llvm-project/issues/50374>
77
77
"s390x" => false ,
78
78
// Infinite recursion <https://github.com/llvm/llvm-project/issues/97981>
79
- // FIXME(llvm20): loongarch fixed by <https://github.com/llvm/llvm-project/pull/107791>
80
79
"csky" => false ,
81
80
"hexagon" => false ,
82
- "loongarch64" => false ,
83
81
"powerpc" | "powerpc64" => false ,
84
82
"sparc" | "sparc64" => false ,
85
83
"wasm32" | "wasm64" => false ,
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ fn main() {
92
92
}
93
93
94
94
// These platforms do not have `__gnu_f2h_ieee` or `__gnu_h2f_ieee`.
95
- if false {
95
+ if target . arch == "loongarch64" {
96
96
features. insert ( Feature :: NoSysF16GnuConvert ) ;
97
97
}
98
98
You can’t perform that action at this time.
0 commit comments