@@ -120,16 +120,13 @@ fn x86_all() {
120
120
println ! ( "avx512dq: {:?}" , is_x86_feature_detected!( "avx512dq" ) ) ;
121
121
println ! ( "avx512er: {:?}" , is_x86_feature_detected!( "avx512er" ) ) ;
122
122
println ! ( "avx512f: {:?}" , is_x86_feature_detected!( "avx512f" ) ) ;
123
- println ! ( "gfni: {:?}" , is_x86_feature_detected!( "gfni" ) ) ;
124
123
println ! ( "avx512ifma: {:?}" , is_x86_feature_detected!( "avx512ifma" ) ) ;
125
124
println ! ( "avx512pf: {:?}" , is_x86_feature_detected!( "avx512pf" ) ) ;
126
- println ! ( "vaes: {:?}" , is_x86_feature_detected!( "vaes" ) ) ;
127
125
println ! ( "avx512vbmi2: {:?}" , is_x86_feature_detected!( "avx512vbmi2" ) ) ;
128
126
println ! ( "avx512vbmi: {:?}" , is_x86_feature_detected!( "avx512vbmi" ) ) ;
129
127
println ! ( "avx512vl: {:?}" , is_x86_feature_detected!( "avx512vl" ) ) ;
130
128
println ! ( "avx512vnni: {:?}" , is_x86_feature_detected!( "avx512vnni" ) ) ;
131
129
println ! ( "avx512vp2intersect: {:?}" , is_x86_feature_detected!( "avx512vp2intersect" ) ) ;
132
- println ! ( "vpclmulqdq: {:?}" , is_x86_feature_detected!( "vpclmulqdq" ) ) ;
133
130
println ! ( "avx512vpopcntdq: {:?}" , is_x86_feature_detected!( "avx512vpopcntdq" ) ) ;
134
131
println ! ( "avx: {:?}" , is_x86_feature_detected!( "avx" ) ) ;
135
132
println ! ( "bmi1: {:?}" , is_x86_feature_detected!( "bmi1" ) ) ;
@@ -138,6 +135,7 @@ fn x86_all() {
138
135
println ! ( "f16c: {:?}" , is_x86_feature_detected!( "f16c" ) ) ;
139
136
println ! ( "fma: {:?}" , is_x86_feature_detected!( "fma" ) ) ;
140
137
println ! ( "fxsr: {:?}" , is_x86_feature_detected!( "fxsr" ) ) ;
138
+ println ! ( "gfni: {:?}" , is_x86_feature_detected!( "gfni" ) ) ;
141
139
println ! ( "lzcnt: {:?}" , is_x86_feature_detected!( "lzcnt" ) ) ;
142
140
//println!("movbe: {:?}", is_x86_feature_detected!("movbe")); // movbe is unsupported as a target feature
143
141
println ! ( "pclmulqdq: {:?}" , is_x86_feature_detected!( "pclmulqdq" ) ) ;
@@ -154,6 +152,8 @@ fn x86_all() {
154
152
println ! ( "sse: {:?}" , is_x86_feature_detected!( "sse" ) ) ;
155
153
println ! ( "ssse3: {:?}" , is_x86_feature_detected!( "ssse3" ) ) ;
156
154
println ! ( "tbm: {:?}" , is_x86_feature_detected!( "tbm" ) ) ;
155
+ println ! ( "vaes: {:?}" , is_x86_feature_detected!( "vaes" ) ) ;
156
+ println ! ( "vpclmulqdq: {:?}" , is_x86_feature_detected!( "vpclmulqdq" ) ) ;
157
157
println ! ( "xsave: {:?}" , is_x86_feature_detected!( "xsave" ) ) ;
158
158
println ! ( "xsavec: {:?}" , is_x86_feature_detected!( "xsavec" ) ) ;
159
159
println ! ( "xsaveopt: {:?}" , is_x86_feature_detected!( "xsaveopt" ) ) ;
0 commit comments