Skip to content

Commit

Permalink
Merge pull request #727 from beetrees/remove-sparcv9-pattern
Browse files Browse the repository at this point in the history
Remove incorrect `sparcv9` match pattern from `configure_f16_f128`
  • Loading branch information
tgross35 authored Nov 3, 2024
2 parents 89d5eda + 80b2b98 commit 0c1453b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pub fn configure_f16_f128(target: &Target) {
// `f128` crashes <https://github.com/llvm/llvm-project/issues/101545>
"powerpc64" if &target.os == "aix" => (true, false),
// `f128` crashes <https://github.com/llvm/llvm-project/issues/41838>
"sparc" | "sparcv9" => (true, false),
"sparc" => (true, false),
// `f16` miscompiles <https://github.com/llvm/llvm-project/issues/96438>
"wasm32" | "wasm64" => (false, true),
// Most everything else works as of LLVM 19
Expand Down

0 comments on commit 0c1453b

Please sign in to comment.