We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd5c26f + bac0eb2 commit 0f063aeCopy full SHA for 0f063ae
src/librustc_codegen_llvm/llvm_util.rs
@@ -86,10 +86,14 @@ unsafe fn configure_llvm(sess: &Session) {
86
// array, leading to crashes.
87
88
const ARM_WHITELIST: &[(&str, Option<&str>)] = &[
89
+ ("aclass", Some("arm_target_feature")),
90
("mclass", Some("arm_target_feature")),
91
("rclass", Some("arm_target_feature")),
92
("dsp", Some("arm_target_feature")),
93
("neon", Some("arm_target_feature")),
94
+ ("v5te", Some("arm_target_feature")),
95
+ ("v6k", Some("arm_target_feature")),
96
+ ("v6t2", Some("arm_target_feature")),
97
("v7", Some("arm_target_feature")),
98
("vfp2", Some("arm_target_feature")),
99
("vfp3", Some("arm_target_feature")),
0 commit comments