We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lp64e
1 parent 44b720a commit c1db011Copy full SHA for c1db011
compiler/rustc_target/src/spec/tests/tests_impl.rs
@@ -165,7 +165,8 @@ impl Target {
165
assert_matches!(&*self.llvm_abiname, "ilp32" | "ilp32f" | "ilp32d" | "ilp32e")
166
}
167
"riscv64" => {
168
- assert_matches!(&*self.llvm_abiname, "lp64" | "lp64f" | "lp64d" | "lp64q")
+ // Note that the `lp64e` is still unstable as it's not (yet) part of the ELF psABI.
169
+ assert_matches!(&*self.llvm_abiname, "lp64" | "lp64f" | "lp64d" | "lp64q" | "lp64e")
170
171
_ => {}
172
0 commit comments