about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2019-02-16 00:55:58 +0800
committerkennytm <kennytm@gmail.com>2019-02-16 14:11:50 +0800
commit30019ed41324c7018c3432482208d86d43517c6d (patch)
tree0f8a9da056f25ed38bd776b7d1c2e2998ef56b7a /src/librustc_codegen_llvm
parent50f3c81c0ecb875d45ac25a771c1bb3c61ff9eba (diff)
parent1d6ce5228efe0d69f57c02f36ee27e1f9bd89616 (diff)
downloadrust-30019ed41324c7018c3432482208d86d43517c6d.tar.gz
rust-30019ed41324c7018c3432482208d86d43517c6d.zip
Rollup merge of #58440 - gnzlbg:v6, r=japaric
Whitelist the ARM v6 target-feature
Diffstat (limited to 'src/librustc_codegen_llvm')
-rw-r--r--src/librustc_codegen_llvm/llvm_util.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_codegen_llvm/llvm_util.rs b/src/librustc_codegen_llvm/llvm_util.rs
index b46e6ef84b9..ecca45a4d42 100644
--- a/src/librustc_codegen_llvm/llvm_util.rs
+++ b/src/librustc_codegen_llvm/llvm_util.rs
@@ -100,9 +100,11 @@ const ARM_WHITELIST: &[(&str, Option<&str>)] = &[
     ("dsp", Some("arm_target_feature")),
     ("neon", Some("arm_target_feature")),
     ("v5te", Some("arm_target_feature")),
+    ("v6", Some("arm_target_feature")),
     ("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")),