@@ -8,9 +8,9 @@ use crate::arch::asm;
8
8
#[ cfg( target_arch = "x86" ) ]
9
9
#[ inline( always) ]
10
10
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
11
- #[ rustc_deprecated (
11
+ #[ deprecated (
12
12
since = "1.29.0" ,
13
- reason = "See issue #51810 - use inline assembly instead"
13
+ note = "See issue #51810 - use inline assembly instead"
14
14
) ]
15
15
#[ doc( hidden) ]
16
16
pub unsafe fn __readeflags ( ) -> u32 {
@@ -25,9 +25,9 @@ pub unsafe fn __readeflags() -> u32 {
25
25
#[ cfg( target_arch = "x86_64" ) ]
26
26
#[ inline( always) ]
27
27
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
28
- #[ rustc_deprecated (
28
+ #[ deprecated (
29
29
since = "1.29.0" ,
30
- reason = "See issue #51810 - use inline assembly instead"
30
+ note = "See issue #51810 - use inline assembly instead"
31
31
) ]
32
32
#[ doc( hidden) ]
33
33
pub unsafe fn __readeflags ( ) -> u64 {
@@ -42,9 +42,9 @@ pub unsafe fn __readeflags() -> u64 {
42
42
#[ cfg( target_arch = "x86" ) ]
43
43
#[ inline( always) ]
44
44
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
45
- #[ rustc_deprecated (
45
+ #[ deprecated (
46
46
since = "1.29.0" ,
47
- reason = "See issue #51810 - use inline assembly instead"
47
+ note = "See issue #51810 - use inline assembly instead"
48
48
) ]
49
49
#[ doc( hidden) ]
50
50
pub unsafe fn __writeeflags ( eflags : u32 ) {
@@ -57,9 +57,9 @@ pub unsafe fn __writeeflags(eflags: u32) {
57
57
#[ cfg( target_arch = "x86_64" ) ]
58
58
#[ inline( always) ]
59
59
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
60
- #[ rustc_deprecated (
60
+ #[ deprecated (
61
61
since = "1.29.0" ,
62
- reason = "See issue #51810 - use inline assembly instead"
62
+ note = "See issue #51810 - use inline assembly instead"
63
63
) ]
64
64
#[ doc( hidden) ]
65
65
pub unsafe fn __writeeflags ( eflags : u64 ) {
0 commit comments