Remove the v7 feature from AArch64

It isn't a valid LLVM feature for this architecture.
This commit is contained in:
Amanieu d'Antras 2018-02-26 23:46:33 +00:00
parent 0ff9872b22
commit 90b28135cc

View File

@ -81,7 +81,7 @@ unsafe fn configure_llvm(sess: &Session) {
const ARM_WHITELIST: &'static [&'static str] = &["neon", "v7", "vfp2", "vfp3", "vfp4"];
const AARCH64_WHITELIST: &'static [&'static str] = &["neon", "v7"];
const AARCH64_WHITELIST: &'static [&'static str] = &["neon"];
const X86_WHITELIST: &'static [&'static str] = &["aes", "avx", "avx2", "avx512bw",
"avx512cd", "avx512dq", "avx512er",