We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 89d5eda + 80b2b98 commit 0c1453bCopy full SHA for 0c1453b
configure.rs
@@ -71,7 +71,7 @@ pub fn configure_f16_f128(target: &Target) {
71
// `f128` crashes <https://github.com/llvm/llvm-project/issues/101545>
72
"powerpc64" if &target.os == "aix" => (true, false),
73
// `f128` crashes <https://github.com/llvm/llvm-project/issues/41838>
74
- "sparc" | "sparcv9" => (true, false),
+ "sparc" => (true, false),
75
// `f16` miscompiles <https://github.com/llvm/llvm-project/issues/96438>
76
"wasm32" | "wasm64" => (false, true),
77
// Most everything else works as of LLVM 19
0 commit comments