]> git.lizzy.rs Git - rust.git/commitdiff
Remove the v7 feature from AArch64
authorAmanieu d'Antras <amanieu@gmail.com>
Mon, 26 Feb 2018 23:46:33 +0000 (23:46 +0000)
committerAmanieu d'Antras <amanieu@gmail.com>
Wed, 28 Feb 2018 14:46:31 +0000 (14:46 +0000)
It isn't a valid LLVM feature for this architecture.

src/librustc_trans/llvm_util.rs

index 00ac9d802457c5a294006c1c745e628105426051..d80ef49d49ae788247ccf28a16bcd80bfb67569b 100644 (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",