Skip to content

Commit

Permalink
Remove incorrect sparcv9 match pattern from configure_f16_f128
Browse files Browse the repository at this point in the history
  • Loading branch information
beetrees committed Nov 3, 2024
1 parent 89d5eda commit 80b2b98
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 80b2b98

Please sign in to comment.