Skip to content

Commit

Permalink
Rollup merge of rust-lang#114500 - taiki-e:arm-crypto, r=Amanieu
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
matthiaskrgr committed Aug 8, 2023
2 parents 6f36f1f + dddd219 commit 28ee1a9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion compiler/rustc_codegen_ssa/src/target_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand Down

0 comments on commit 28ee1a9

Please sign in to comment.