@@ -38,7 +38,7 @@ extern "C" {
3838///
3939/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesenc_epi128)
4040#[ inline]
41- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
41+ #[ target_feature( enable = "avx512vaes" ) ]
4242#[ cfg_attr( test, assert_instr( vaesenc) ) ]
4343pub unsafe fn _mm256_aesenc_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
4444 aesenc_256 ( a, round_key)
@@ -49,7 +49,7 @@ pub unsafe fn _mm256_aesenc_epi128(a: __m256i, round_key: __m256i) -> __m256i {
4949///
5050/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesenclast_epi128)
5151#[ inline]
52- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
52+ #[ target_feature( enable = "avx512vaes" ) ]
5353#[ cfg_attr( test, assert_instr( vaesenclast) ) ]
5454pub unsafe fn _mm256_aesenclast_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
5555 aesenclast_256 ( a, round_key)
@@ -60,7 +60,7 @@ pub unsafe fn _mm256_aesenclast_epi128(a: __m256i, round_key: __m256i) -> __m256
6060///
6161/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesdec_epi128)
6262#[ inline]
63- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
63+ #[ target_feature( enable = "avx512vaes" ) ]
6464#[ cfg_attr( test, assert_instr( vaesdec) ) ]
6565pub unsafe fn _mm256_aesdec_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
6666 aesdec_256 ( a, round_key)
@@ -71,7 +71,7 @@ pub unsafe fn _mm256_aesdec_epi128(a: __m256i, round_key: __m256i) -> __m256i {
7171///
7272/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_aesdeclast_epi128)
7373#[ inline]
74- #[ target_feature( enable = "avx512vaes,avx512vl " ) ]
74+ #[ target_feature( enable = "avx512vaes" ) ]
7575#[ cfg_attr( test, assert_instr( vaesdeclast) ) ]
7676pub unsafe fn _mm256_aesdeclast_epi128 ( a : __m256i , round_key : __m256i ) -> __m256i {
7777 aesdeclast_256 ( a, round_key)
0 commit comments