We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c71e58d commit 904467aCopy full SHA for 904467a
compiler/rustc_codegen_ssa/src/target_features.rs
@@ -17,6 +17,8 @@ const ARM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
17
("neon", Some(sym::arm_target_feature)),
18
("crc", Some(sym::arm_target_feature)),
19
("crypto", Some(sym::arm_target_feature)),
20
+ ("aes", Some(sym::arm_target_feature)),
21
+ ("sha2", Some(sym::arm_target_feature)),
22
("v5te", Some(sym::arm_target_feature)),
23
("v6", Some(sym::arm_target_feature)),
24
("v6k", Some(sym::arm_target_feature)),
@@ -107,6 +109,8 @@ const AARCH64_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
107
109
("jsconv", Some(sym::aarch64_target_feature)),
108
110
// FEAT_FCMA
111
("fcma", Some(sym::aarch64_target_feature)),
112
+ // FEAT_AES
113
+ ("aes", Some(sym::aarch64_target_feature)),
114
// FEAT_SHA1 & FEAT_SHA256
115
("sha2", Some(sym::aarch64_target_feature)),
116
// FEAT_SHA512 & FEAT_SHA3
0 commit comments