diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-08-08 03:30:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-08 03:30:55 +0200 |
| commit | 28ee1a919ec59a468c3c539dcf130d211ea74484 (patch) | |
| tree | b66c8f9eda7a5963fbb40b0d8b732bee78833f77 /compiler/rustc_codegen_ssa | |
| parent | 6f36f1ffbd7421783cc753d7566bcb2978099cb2 (diff) | |
| parent | dddd2190b9d3185cc3621847ffb5036501f1fcc9 (diff) | |
| download | rust-28ee1a919ec59a468c3c539dcf130d211ea74484.tar.gz rust-28ee1a919ec59a468c3c539dcf130d211ea74484.zip | |
Rollup merge of #114500 - taiki-e:arm-crypto, r=Amanieu
Remove arm crypto target feature Follow-up to https://github.com/rust-lang/stdarch/pull/1407. LLVM has moved away from a combined `crypto` feature on both aarch64 and arm, and we did the same on aarch64, but were deferred from doing the same on arm due to compatibility with older LLVM. As the minimum LLVM version has increased, we can now remove this (unstable) target feature on arm. r? `@Amanieu`
Diffstat (limited to 'compiler/rustc_codegen_ssa')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/target_features.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs index 98e561b0aef..c370ba9be56 100644 --- a/compiler/rustc_codegen_ssa/src/target_features.rs +++ b/compiler/rustc_codegen_ssa/src/target_features.rs @@ -29,7 +29,6 @@ const ARM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[ ("aclass", Some(sym::arm_target_feature)), ("aes", Some(sym::arm_target_feature)), ("crc", Some(sym::arm_target_feature)), - ("crypto", Some(sym::arm_target_feature)), ("d32", Some(sym::arm_target_feature)), ("dotprod", Some(sym::arm_target_feature)), ("dsp", Some(sym::arm_target_feature)), |
