about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-02-14 22:00:33 +0100
committergnzlbg <gonzalobg88@gmail.com>2019-02-14 22:00:33 +0100
commit1d6ce5228efe0d69f57c02f36ee27e1f9bd89616 (patch)
tree2f9a7b152401fe3fdc38b1977a90d9cf2cc829f6
parent6bce2b81986a1a8da930c11b9b9d907a792b3f61 (diff)
downloadrust-1d6ce5228efe0d69f57c02f36ee27e1f9bd89616.tar.gz
rust-1d6ce5228efe0d69f57c02f36ee27e1f9bd89616.zip
Whitelist the ARM v8 target-feature
-rw-r--r--src/librustc_codegen_llvm/llvm_util.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_codegen_llvm/llvm_util.rs b/src/librustc_codegen_llvm/llvm_util.rs
index 9fe0a4c45f9..ecca45a4d42 100644
--- a/src/librustc_codegen_llvm/llvm_util.rs
+++ b/src/librustc_codegen_llvm/llvm_util.rs
@@ -104,6 +104,7 @@ const ARM_WHITELIST: &[(&str, Option<&str>)] = &[
     ("v6k", Some("arm_target_feature")),
     ("v6t2", Some("arm_target_feature")),
     ("v7", Some("arm_target_feature")),
+    ("v8", Some("arm_target_feature")),
     ("vfp2", Some("arm_target_feature")),
     ("vfp3", Some("arm_target_feature")),
     ("vfp4", Some("arm_target_feature")),