std: remove test for arm's crypto feature

please see https://github.com/rust-lang/rust/pull/110285#issuecomment-1521201953 for more details
This commit is contained in:
Kisaragi Marine 2023-05-08 19:09:12 +09:00
parent f7e54b85c4
commit a4014f08a7
No known key found for this signature in database
GPG Key ID: 62B80306B822AE9E

View File

@ -16,7 +16,6 @@ fn arm_linux() {
// tidy-alphabetical-start
println!("aes: {}", is_arm_feature_detected!("aes"));
println!("crc: {}", is_arm_feature_detected!("crc"));
println!("crypto: {}", is_arm_feature_detected!("crypto"));
println!("neon: {}", is_arm_feature_detected!("neon"));
println!("pmull: {}", is_arm_feature_detected!("pmull"));
println!("sha2: {}", is_arm_feature_detected!("sha2"));