Skip to content

Commit 80b2b98

Browse files
committed
Remove incorrect sparcv9 match pattern from configure_f16_f128
1 parent 89d5eda commit 80b2b98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pub fn configure_f16_f128(target: &Target) {
7171
// `f128` crashes <https://github.com/llvm/llvm-project/issues/101545>
7272
"powerpc64" if &target.os == "aix" => (true, false),
7373
// `f128` crashes <https://github.com/llvm/llvm-project/issues/41838>
74-
"sparc" | "sparcv9" => (true, false),
74+
"sparc" => (true, false),
7575
// `f16` miscompiles <https://github.com/llvm/llvm-project/issues/96438>
7676
"wasm32" | "wasm64" => (false, true),
7777
// Most everything else works as of LLVM 19

0 commit comments

Comments
 (0)