Skip to content

Commit 0c1453b

Browse files
authored
Merge pull request #727 from beetrees/remove-sparcv9-pattern
Remove incorrect `sparcv9` match pattern from `configure_f16_f128`
2 parents 89d5eda + 80b2b98 commit 0c1453b

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)