From 90b28135ccee40577bd0915d70fcd5613aa52544 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Mon, 26 Feb 2018 23:46:33 +0000 Subject: [PATCH] Remove the v7 feature from AArch64 It isn't a valid LLVM feature for this architecture. --- src/librustc_trans/llvm_util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_trans/llvm_util.rs b/src/librustc_trans/llvm_util.rs index 00ac9d802457c..d80ef49d49ae7 100644 --- a/src/librustc_trans/llvm_util.rs +++ b/src/librustc_trans/llvm_util.rs @@ -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",