@@ -25,7 +25,8 @@ fn arm_linux() {
2525 println ! ( "neon: {}" , is_arm_feature_detected!( "neon" ) ) ;
2626 println ! ( "pmull: {}" , is_arm_feature_detected!( "pmull" ) ) ;
2727 println ! ( "crc: {}" , is_arm_feature_detected!( "crc" ) ) ;
28- println ! ( "crypto: {}" , is_arm_feature_detected!( "crypto" ) ) ;
28+ println ! ( "aes: {}" , is_arm_feature_detected!( "aes" ) ) ;
29+ println ! ( "sha2: {}" , is_arm_feature_detected!( "sha2" ) ) ;
2930}
3031
3132#[ test]
@@ -41,7 +42,6 @@ fn aarch64_linux() {
4142 println ! ( "fp16: {}" , is_aarch64_feature_detected!( "fp16" ) ) ;
4243 println ! ( "sve: {}" , is_aarch64_feature_detected!( "sve" ) ) ;
4344 println ! ( "crc: {}" , is_aarch64_feature_detected!( "crc" ) ) ;
44- println ! ( "crypto: {}" , is_aarch64_feature_detected!( "crypto" ) ) ;
4545 println ! ( "lse: {}" , is_aarch64_feature_detected!( "lse" ) ) ;
4646 println ! ( "lse2: {}" , is_aarch64_feature_detected!( "lse2" ) ) ;
4747 println ! ( "rdm: {}" , is_aarch64_feature_detected!( "rdm" ) ) ;
@@ -62,7 +62,7 @@ fn aarch64_linux() {
6262 println ! ( "sve2-sm4: {}" , is_aarch64_feature_detected!( "sve2-sm4" ) ) ;
6363 println ! ( "sve2-sha3: {}" , is_aarch64_feature_detected!( "sve2-sha3" ) ) ;
6464 println ! ( "sve2-bitperm: {}" , is_aarch64_feature_detected!( "sve2-bitperm" ) ) ;
65- println ! ( "fptoint : {}" , is_aarch64_feature_detected!( "fptoint " ) ) ;
65+ println ! ( "frintts : {}" , is_aarch64_feature_detected!( "frintts " ) ) ;
6666 println ! ( "i8mm: {}" , is_aarch64_feature_detected!( "i8mm" ) ) ;
6767 println ! ( "f32mm: {}" , is_aarch64_feature_detected!( "f32mm" ) ) ;
6868 println ! ( "f64mm: {}" , is_aarch64_feature_detected!( "f64mm" ) ) ;
@@ -72,6 +72,7 @@ fn aarch64_linux() {
7272 println ! ( "mte: {}" , is_aarch64_feature_detected!( "mte" ) ) ;
7373 println ! ( "jsconv: {}" , is_aarch64_feature_detected!( "jsconv" ) ) ;
7474 println ! ( "fcma: {}" , is_aarch64_feature_detected!( "fcma" ) ) ;
75+ println ! ( "aes: {}" , is_aarch64_feature_detected!( "aes" ) ) ;
7576 println ! ( "sha2: {}" , is_aarch64_feature_detected!( "sha2" ) ) ;
7677 println ! ( "sha3: {}" , is_aarch64_feature_detected!( "sha3" ) ) ;
7778 println ! ( "sm4: {}" , is_aarch64_feature_detected!( "sm4" ) ) ;
0 commit comments