@@ -120,16 +120,13 @@ fn x86_all() {
120120    println ! ( "avx512dq: {:?}" ,  is_x86_feature_detected!( "avx512dq" ) ) ; 
121121    println ! ( "avx512er: {:?}" ,  is_x86_feature_detected!( "avx512er" ) ) ; 
122122    println ! ( "avx512f: {:?}" ,  is_x86_feature_detected!( "avx512f" ) ) ; 
123-     println ! ( "gfni: {:?}" ,  is_x86_feature_detected!( "gfni" ) ) ; 
124123    println ! ( "avx512ifma: {:?}" ,  is_x86_feature_detected!( "avx512ifma" ) ) ; 
125124    println ! ( "avx512pf: {:?}" ,  is_x86_feature_detected!( "avx512pf" ) ) ; 
126-     println ! ( "vaes: {:?}" ,  is_x86_feature_detected!( "vaes" ) ) ; 
127125    println ! ( "avx512vbmi2: {:?}" ,  is_x86_feature_detected!( "avx512vbmi2" ) ) ; 
128126    println ! ( "avx512vbmi: {:?}" ,  is_x86_feature_detected!( "avx512vbmi" ) ) ; 
129127    println ! ( "avx512vl: {:?}" ,  is_x86_feature_detected!( "avx512vl" ) ) ; 
130128    println ! ( "avx512vnni: {:?}" ,  is_x86_feature_detected!( "avx512vnni" ) ) ; 
131129    println ! ( "avx512vp2intersect: {:?}" ,  is_x86_feature_detected!( "avx512vp2intersect" ) ) ; 
132-     println ! ( "vpclmulqdq: {:?}" ,  is_x86_feature_detected!( "vpclmulqdq" ) ) ; 
133130    println ! ( "avx512vpopcntdq: {:?}" ,  is_x86_feature_detected!( "avx512vpopcntdq" ) ) ; 
134131    println ! ( "avx: {:?}" ,  is_x86_feature_detected!( "avx" ) ) ; 
135132    println ! ( "bmi1: {:?}" ,  is_x86_feature_detected!( "bmi1" ) ) ; 
@@ -138,6 +135,7 @@ fn x86_all() {
138135    println ! ( "f16c: {:?}" ,  is_x86_feature_detected!( "f16c" ) ) ; 
139136    println ! ( "fma: {:?}" ,  is_x86_feature_detected!( "fma" ) ) ; 
140137    println ! ( "fxsr: {:?}" ,  is_x86_feature_detected!( "fxsr" ) ) ; 
138+     println ! ( "gfni: {:?}" ,  is_x86_feature_detected!( "gfni" ) ) ; 
141139    println ! ( "lzcnt: {:?}" ,  is_x86_feature_detected!( "lzcnt" ) ) ; 
142140    //println!("movbe: {:?}", is_x86_feature_detected!("movbe")); // movbe is unsupported as a target feature 
143141    println ! ( "pclmulqdq: {:?}" ,  is_x86_feature_detected!( "pclmulqdq" ) ) ; 
@@ -154,6 +152,8 @@ fn x86_all() {
154152    println ! ( "sse: {:?}" ,  is_x86_feature_detected!( "sse" ) ) ; 
155153    println ! ( "ssse3: {:?}" ,  is_x86_feature_detected!( "ssse3" ) ) ; 
156154    println ! ( "tbm: {:?}" ,  is_x86_feature_detected!( "tbm" ) ) ; 
155+     println ! ( "vaes: {:?}" ,  is_x86_feature_detected!( "vaes" ) ) ; 
156+     println ! ( "vpclmulqdq: {:?}" ,  is_x86_feature_detected!( "vpclmulqdq" ) ) ; 
157157    println ! ( "xsave: {:?}" ,  is_x86_feature_detected!( "xsave" ) ) ; 
158158    println ! ( "xsavec: {:?}" ,  is_x86_feature_detected!( "xsavec" ) ) ; 
159159    println ! ( "xsaveopt: {:?}" ,  is_x86_feature_detected!( "xsaveopt" ) ) ; 
0 commit comments