Skip to content

Commit 28ee1a9

Browse files
authored
Rollup merge of #114500 - taiki-e:arm-crypto, r=Amanieu
Remove arm crypto target feature Follow-up to rust-lang/stdarch#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`
2 parents 6f36f1f + dddd219 commit 28ee1a9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

compiler/rustc_codegen_ssa/src/target_features.rs

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ const ARM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
2929
("aclass", Some(sym::arm_target_feature)),
3030
("aes", Some(sym::arm_target_feature)),
3131
("crc", Some(sym::arm_target_feature)),
32-
("crypto", Some(sym::arm_target_feature)),
3332
("d32", Some(sym::arm_target_feature)),
3433
("dotprod", Some(sym::arm_target_feature)),
3534
("dsp", Some(sym::arm_target_feature)),

0 commit comments

Comments
 (0)