10
10
// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
11
11
// LLVM says "instruction requires: armv6k"
12
12
#[ cfg( any( target_feature = "v6" , target_arch = "aarch64" , doc) ) ]
13
- #[ doc( cfg( target_arch = "arm" ) ) ]
14
13
#[ inline( always) ]
15
14
pub unsafe fn __wfi ( ) {
16
15
hint ( HINT_WFI ) ;
@@ -24,7 +23,6 @@ pub unsafe fn __wfi() {
24
23
// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
25
24
// LLVM says "instruction requires: armv6k"
26
25
#[ cfg( any( target_feature = "v6" , target_arch = "aarch64" , doc) ) ]
27
- #[ doc( cfg( target_arch = "arm" ) ) ]
28
26
#[ inline( always) ]
29
27
pub unsafe fn __wfe ( ) {
30
28
hint ( HINT_WFE ) ;
@@ -37,7 +35,6 @@ pub unsafe fn __wfe() {
37
35
// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M, 7-M
38
36
// LLVM says "instruction requires: armv6k"
39
37
#[ cfg( any( target_feature = "v6" , target_arch = "aarch64" , doc) ) ]
40
- #[ doc( cfg( target_arch = "aarch64" ) ) ]
41
38
#[ inline( always) ]
42
39
pub unsafe fn __sev ( ) {
43
40
hint ( HINT_SEV ) ;
@@ -68,7 +65,6 @@ pub unsafe fn __sevl() {
68
65
// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
69
66
// LLVM says "instruction requires: armv6k"
70
67
#[ cfg( any( target_feature = "v6" , target_arch = "aarch64" , doc) ) ]
71
- #[ doc( cfg( target_arch = "aarch64" ) ) ]
72
68
#[ inline( always) ]
73
69
pub unsafe fn __yield ( ) {
74
70
hint ( HINT_YIELD ) ;
0 commit comments