about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorSparrowLii <liyuan179@huawei.com>2021-10-25 15:10:14 +0800
committerSparrowLii <liyuan179@huawei.com>2021-10-25 15:10:14 +0800
commitb88fcc1ea3d9637bd3c1d6860d15718b0f21f92a (patch)
tree580891b9da317d3f832b2f05fa8954acb6262147 /compiler
parent14007eca0a3e6cbf040158c6af124c0063deb007 (diff)
downloadrust-b88fcc1ea3d9637bd3c1d6860d15718b0f21f92a.tar.gz
rust-b88fcc1ea3d9637bd3c1d6860d15718b0f21f92a.zip
enable `i8mm` on arm
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_codegen_ssa/src/target_features.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs
index 109bd15f12f..dbffb266be8 100644
--- a/compiler/rustc_codegen_ssa/src/target_features.rs
+++ b/compiler/rustc_codegen_ssa/src/target_features.rs
@@ -19,6 +19,7 @@ const ARM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
     ("crypto", Some(sym::arm_target_feature)),
     ("aes", Some(sym::arm_target_feature)),
     ("sha2", Some(sym::arm_target_feature)),
+    ("i8mm", Some(sym::arm_target_feature)),
     ("v5te", Some(sym::arm_target_feature)),
     ("v6", Some(sym::arm_target_feature)),
     ("v6k", Some(sym::arm_target_feature)),