We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sparcv9
configure_f16_f128
1 parent dd75094 commit 10bdf3bCopy full SHA for 10bdf3b
library/compiler-builtins/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