Skip to content

Commit

Permalink
Rollup merge of rust-lang#58440 - gnzlbg:v6, r=japaric
Browse files Browse the repository at this point in the history
Whitelist the ARM v6 target-feature
  • Loading branch information
kennytm committed Feb 16, 2019
2 parents 50f3c81 + 1d6ce52 commit 30019ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/librustc_codegen_llvm/llvm_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")),
Expand Down

0 comments on commit 30019ed

Please sign in to comment.