@@ -38,7 +38,7 @@ extern "C" {
38
38
///
39
39
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesenc_epi128)
40
40
#[ inline]
41
- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
41
+ #[ target_feature( enable = "avx512vaes" ) ]
42
42
#[ cfg_attr( test, assert_instr( vaesenc) ) ]
43
43
pub unsafe fn _mm256_aesenc_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
44
44
aesenc_256 ( a, round_key)
@@ -49,7 +49,7 @@ pub unsafe fn _mm256_aesenc_epi128(a: __m256i, round_key: __m256i) -> __m256i {
49
49
///
50
50
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesenclast_epi128)
51
51
#[ inline]
52
- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
52
+ #[ target_feature( enable = "avx512vaes" ) ]
53
53
#[ cfg_attr( test, assert_instr( vaesenclast) ) ]
54
54
pub unsafe fn _mm256_aesenclast_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
55
55
aesenclast_256 ( a, round_key)
@@ -60,7 +60,7 @@ pub unsafe fn _mm256_aesenclast_epi128(a: __m256i, round_key: __m256i) -> __m256
60
60
///
61
61
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesdec_epi128)
62
62
#[ inline]
63
- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
63
+ #[ target_feature( enable = "avx512vaes" ) ]
64
64
#[ cfg_attr( test, assert_instr( vaesdec) ) ]
65
65
pub unsafe fn _mm256_aesdec_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
66
66
aesdec_256 ( a, round_key)
@@ -71,7 +71,7 @@ pub unsafe fn _mm256_aesdec_epi128(a: __m256i, round_key: __m256i) -> __m256i {
71
71
///
72
72
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesdeclast_epi128)
73
73
#[ inline]
74
- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
74
+ #[ target_feature( enable = "avx512vaes" ) ]
75
75
#[ cfg_attr( test, assert_instr( vaesdeclast) ) ]
76
76
pub unsafe fn _mm256_aesdeclast_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
77
77
aesdeclast_256 ( a, round_key)
0 commit comments