Navigation Menu

Skip to content

Commit

Permalink
Remove the v7 feature from AArch64
Browse files Browse the repository at this point in the history
It isn't a valid LLVM feature for this architecture.
  • Loading branch information
Amanieu committed Feb 28, 2018
1 parent 0ff9872 commit 90b2813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_trans/llvm_util.rs
Expand Up @@ -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",
Expand Down

0 comments on commit 90b2813

Please sign in to comment.