diff options
| author | bors <bors@rust-lang.org> | 2021-10-25 14:40:45 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-10-25 14:40:45 +0000 |
| commit | 84c2a8505dcdfa0e38e05f72066480ea51ba9cbd (patch) | |
| tree | 75ad7b93989f6bc6fdf172205e4360d0222d86b8 /compiler/rustc_codegen_ssa/src | |
| parent | 235d9853d80f93d31b9c4ae044d6f5c4de3e7255 (diff) | |
| parent | 21af58173f71c16c1d8b111e7455982d2932ce69 (diff) | |
| download | rust-84c2a8505dcdfa0e38e05f72066480ea51ba9cbd.tar.gz rust-84c2a8505dcdfa0e38e05f72066480ea51ba9cbd.zip | |
Auto merge of #90265 - GuillaumeGomez:rollup-gx3ficp, r=GuillaumeGomez
Rollup of 5 pull requests Successful merges: - #90017 (Add a couple tests for normalize under binder issues) - #90079 (enable `i8mm` target feature on aarch64 and arm) - #90233 (Tooltip overflow) - #90257 (Changed slice.swap documentation for better readability) - #90261 (Move back to linux builder on try builds) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/target_features.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs index 8d7e9612f47..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)), @@ -90,7 +91,7 @@ const AARCH64_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[ // FEAT_FRINTTS ("frintts", Some(sym::aarch64_target_feature)), // FEAT_I8MM - // ("i8mm", Some(sym::aarch64_target_feature)), + ("i8mm", Some(sym::aarch64_target_feature)), // FEAT_F32MM // ("f32mm", Some(sym::aarch64_target_feature)), // FEAT_F64MM |
