File tree 5 files changed +422
-203
lines changed
5 files changed +422
-203
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ matrix:
26
26
script : |
27
27
cargo install clippy
28
28
cargo clippy --all -- -D clippy-pedantic
29
- cd coresimd
30
- cargo clippy --all -- -D clippy-pedantic
31
29
allow_failures :
32
30
- env : RUSTFMT=On TARGET=x86_64-unknown-linux-gnu NO_ADD=1
33
31
- env : CLIPPY=On TARGET=x86_64-unknown-linux-gnu NO_ADD=1
Original file line number Diff line number Diff line change @@ -472,8 +472,14 @@ mod tests {
472
472
assert_eq ! ( cfg_feature_enabled!( "avx512bw" ) , information. avx512bw( ) ) ;
473
473
assert_eq ! ( cfg_feature_enabled!( "avx512dq" ) , information. avx512dq( ) ) ;
474
474
assert_eq ! ( cfg_feature_enabled!( "avx512vl" ) , information. avx512vl( ) ) ;
475
- assert_eq ! ( cfg_feature_enabled!( "avx512ifma" ) , information. avx512_ifma( ) ) ;
476
- assert_eq ! ( cfg_feature_enabled!( "avx512vbmi" ) , information. avx512_vbmi( ) ) ;
475
+ assert_eq ! (
476
+ cfg_feature_enabled!( "avx512ifma" ) ,
477
+ information. avx512_ifma( )
478
+ ) ;
479
+ assert_eq ! (
480
+ cfg_feature_enabled!( "avx512vbmi" ) ,
481
+ information. avx512_vbmi( )
482
+ ) ;
477
483
assert_eq ! (
478
484
cfg_feature_enabled!( "avx512vpopcntdq" ) ,
479
485
information. avx512_vpopcntdq( )
You can’t perform that action at this time.
0 commit comments