@@ -25,7 +25,8 @@ fn arm_linux() {
25
25
println ! ( "neon: {}" , is_arm_feature_detected!( "neon" ) ) ;
26
26
println ! ( "pmull: {}" , is_arm_feature_detected!( "pmull" ) ) ;
27
27
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" ) ) ;
29
30
}
30
31
31
32
#[ test]
@@ -41,7 +42,6 @@ fn aarch64_linux() {
41
42
println ! ( "fp16: {}" , is_aarch64_feature_detected!( "fp16" ) ) ;
42
43
println ! ( "sve: {}" , is_aarch64_feature_detected!( "sve" ) ) ;
43
44
println ! ( "crc: {}" , is_aarch64_feature_detected!( "crc" ) ) ;
44
- println ! ( "crypto: {}" , is_aarch64_feature_detected!( "crypto" ) ) ;
45
45
println ! ( "lse: {}" , is_aarch64_feature_detected!( "lse" ) ) ;
46
46
println ! ( "lse2: {}" , is_aarch64_feature_detected!( "lse2" ) ) ;
47
47
println ! ( "rdm: {}" , is_aarch64_feature_detected!( "rdm" ) ) ;
@@ -62,7 +62,7 @@ fn aarch64_linux() {
62
62
println ! ( "sve2-sm4: {}" , is_aarch64_feature_detected!( "sve2-sm4" ) ) ;
63
63
println ! ( "sve2-sha3: {}" , is_aarch64_feature_detected!( "sve2-sha3" ) ) ;
64
64
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 " ) ) ;
66
66
println ! ( "i8mm: {}" , is_aarch64_feature_detected!( "i8mm" ) ) ;
67
67
println ! ( "f32mm: {}" , is_aarch64_feature_detected!( "f32mm" ) ) ;
68
68
println ! ( "f64mm: {}" , is_aarch64_feature_detected!( "f64mm" ) ) ;
@@ -72,6 +72,7 @@ fn aarch64_linux() {
72
72
println ! ( "mte: {}" , is_aarch64_feature_detected!( "mte" ) ) ;
73
73
println ! ( "jsconv: {}" , is_aarch64_feature_detected!( "jsconv" ) ) ;
74
74
println ! ( "fcma: {}" , is_aarch64_feature_detected!( "fcma" ) ) ;
75
+ println ! ( "aes: {}" , is_aarch64_feature_detected!( "aes" ) ) ;
75
76
println ! ( "sha2: {}" , is_aarch64_feature_detected!( "sha2" ) ) ;
76
77
println ! ( "sha3: {}" , is_aarch64_feature_detected!( "sha3" ) ) ;
77
78
println ! ( "sm4: {}" , is_aarch64_feature_detected!( "sm4" ) ) ;
0 commit comments