Rollup merge of #87729 - adamgemmell:dev/deprecate-crypto, r=Amanieu
Remove the aarch64 `crypto` target_feature The subfeatures `aes` or `sha2` should be used instead. This can't yet be done for ARM targets as some LLVM intrinsics still require `crypto`. Also update the runtime feature detection tests in `library/std` to mirror the updates in `stdarch`. This also helps https://github.com/rust-lang/rust/issues/86941 r? ``@Amanieu``
This commit is contained in:
commit
519c5a24e1
3 changed files with 37 additions and 5 deletions
|
@ -47,8 +47,6 @@ const AARCH64_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
|
|||
("sve", Some(sym::aarch64_target_feature)),
|
||||
// FEAT_CRC
|
||||
("crc", Some(sym::aarch64_target_feature)),
|
||||
// Cryptographic extension
|
||||
("crypto", Some(sym::aarch64_target_feature)),
|
||||
// FEAT_RAS
|
||||
("ras", Some(sym::aarch64_target_feature)),
|
||||
// FEAT_LSE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue