@@ -127,7 +127,7 @@ unsafe extern "unadjusted" {
127
127
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_loadiwkey)
128
128
#[ inline]
129
129
#[ target_feature( enable = "kl" ) ]
130
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
130
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
131
131
#[ cfg_attr( test, assert_instr( loadiwkey) ) ]
132
132
pub unsafe fn _mm_loadiwkey (
133
133
control : u32 ,
@@ -153,7 +153,7 @@ pub unsafe fn _mm_loadiwkey(
153
153
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_encodekey128_u32)
154
154
#[ inline]
155
155
#[ target_feature( enable = "kl" ) ]
156
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
156
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
157
157
#[ cfg_attr( test, assert_instr( encodekey128) ) ]
158
158
pub unsafe fn _mm_encodekey128_u32 ( key_params : u32 , key : __m128i , handle : * mut u8 ) -> u32 {
159
159
let EncodeKey128Output ( control, key0, key1, key2, _, _, _) = encodekey128 ( key_params, key) ;
@@ -176,7 +176,7 @@ pub unsafe fn _mm_encodekey128_u32(key_params: u32, key: __m128i, handle: *mut u
176
176
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_encodekey256_u32)
177
177
#[ inline]
178
178
#[ target_feature( enable = "kl" ) ]
179
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
179
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
180
180
#[ cfg_attr( test, assert_instr( encodekey256) ) ]
181
181
pub unsafe fn _mm_encodekey256_u32 (
182
182
key_params : u32 ,
@@ -198,7 +198,7 @@ pub unsafe fn _mm_encodekey256_u32(
198
198
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesenc128kl_u8)
199
199
#[ inline]
200
200
#[ target_feature( enable = "kl" ) ]
201
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
201
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
202
202
#[ cfg_attr( test, assert_instr( aesenc128kl) ) ]
203
203
pub unsafe fn _mm_aesenc128kl_u8 ( output : * mut __m128i , input : __m128i , handle : * const u8 ) -> u8 {
204
204
let AesOutput ( status, result) = aesenc128kl ( input, handle) ;
@@ -214,7 +214,7 @@ pub unsafe fn _mm_aesenc128kl_u8(output: *mut __m128i, input: __m128i, handle: *
214
214
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesdec128kl_u8)
215
215
#[ inline]
216
216
#[ target_feature( enable = "kl" ) ]
217
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
217
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
218
218
#[ cfg_attr( test, assert_instr( aesdec128kl) ) ]
219
219
pub unsafe fn _mm_aesdec128kl_u8 ( output : * mut __m128i , input : __m128i , handle : * const u8 ) -> u8 {
220
220
let AesOutput ( status, result) = aesdec128kl ( input, handle) ;
@@ -230,7 +230,7 @@ pub unsafe fn _mm_aesdec128kl_u8(output: *mut __m128i, input: __m128i, handle: *
230
230
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesenc256kl_u8)
231
231
#[ inline]
232
232
#[ target_feature( enable = "kl" ) ]
233
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
233
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
234
234
#[ cfg_attr( test, assert_instr( aesenc256kl) ) ]
235
235
pub unsafe fn _mm_aesenc256kl_u8 ( output : * mut __m128i , input : __m128i , handle : * const u8 ) -> u8 {
236
236
let AesOutput ( status, result) = aesenc256kl ( input, handle) ;
@@ -246,7 +246,7 @@ pub unsafe fn _mm_aesenc256kl_u8(output: *mut __m128i, input: __m128i, handle: *
246
246
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesdec256kl_u8)
247
247
#[ inline]
248
248
#[ target_feature( enable = "kl" ) ]
249
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
249
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
250
250
#[ cfg_attr( test, assert_instr( aesdec256kl) ) ]
251
251
pub unsafe fn _mm_aesdec256kl_u8 ( output : * mut __m128i , input : __m128i , handle : * const u8 ) -> u8 {
252
252
let AesOutput ( status, result) = aesdec256kl ( input, handle) ;
@@ -262,7 +262,7 @@ pub unsafe fn _mm_aesdec256kl_u8(output: *mut __m128i, input: __m128i, handle: *
262
262
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesencwide128kl_u8)
263
263
#[ inline]
264
264
#[ target_feature( enable = "widekl" ) ]
265
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
265
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
266
266
#[ cfg_attr( test, assert_instr( aesencwide128kl) ) ]
267
267
pub unsafe fn _mm_aesencwide128kl_u8 (
268
268
output : * mut __m128i ,
@@ -285,7 +285,7 @@ pub unsafe fn _mm_aesencwide128kl_u8(
285
285
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesdecwide128kl_u8)
286
286
#[ inline]
287
287
#[ target_feature( enable = "widekl" ) ]
288
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
288
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
289
289
#[ cfg_attr( test, assert_instr( aesdecwide128kl) ) ]
290
290
pub unsafe fn _mm_aesdecwide128kl_u8 (
291
291
output : * mut __m128i ,
@@ -308,7 +308,7 @@ pub unsafe fn _mm_aesdecwide128kl_u8(
308
308
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesencwide256kl_u8)
309
309
#[ inline]
310
310
#[ target_feature( enable = "widekl" ) ]
311
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
311
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
312
312
#[ cfg_attr( test, assert_instr( aesencwide256kl) ) ]
313
313
pub unsafe fn _mm_aesencwide256kl_u8 (
314
314
output : * mut __m128i ,
@@ -331,7 +331,7 @@ pub unsafe fn _mm_aesencwide256kl_u8(
331
331
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_aesdecwide256kl_u8)
332
332
#[ inline]
333
333
#[ target_feature( enable = "widekl" ) ]
334
- #[ unstable ( feature = "keylocker_x86" , issue = "134813 " ) ]
334
+ #[ stable ( feature = "keylocker_x86" , since = "CURRENT_RUSTC_VERSION " ) ]
335
335
#[ cfg_attr( test, assert_instr( aesdecwide256kl) ) ]
336
336
pub unsafe fn _mm_aesdecwide256kl_u8 (
337
337
output : * mut __m128i ,
0 commit comments