Skip to content

Commit 90b2813

Browse files
committed
Remove the v7 feature from AArch64
It isn't a valid LLVM feature for this architecture.
1 parent 0ff9872 commit 90b2813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_trans/llvm_util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ unsafe fn configure_llvm(sess: &Session) {
8181

8282
const ARM_WHITELIST: &'static [&'static str] = &["neon", "v7", "vfp2", "vfp3", "vfp4"];
8383

84-
const AARCH64_WHITELIST: &'static [&'static str] = &["neon", "v7"];
84+
const AARCH64_WHITELIST: &'static [&'static str] = &["neon"];
8585

8686
const X86_WHITELIST: &'static [&'static str] = &["aes", "avx", "avx2", "avx512bw",
8787
"avx512cd", "avx512dq", "avx512er",

0 commit comments

Comments
 (0)