9
9
/// low-power state until one of a number of asynchronous events occurs.
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
- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
12
+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
13
13
#[ inline( always) ]
14
14
pub unsafe fn __wfi ( ) {
15
15
hint ( HINT_WFI ) ;
@@ -22,7 +22,7 @@ pub unsafe fn __wfi() {
22
22
/// another processor.
23
23
// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
24
24
// LLVM says "instruction requires: armv6k"
25
- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
25
+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
26
26
#[ inline( always) ]
27
27
pub unsafe fn __wfe ( ) {
28
28
hint ( HINT_WFE ) ;
@@ -34,7 +34,7 @@ pub unsafe fn __wfe() {
34
34
/// system. It is a NOP on a uniprocessor system.
35
35
// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M, 7-M
36
36
// LLVM says "instruction requires: armv6k"
37
- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
37
+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
38
38
#[ inline( always) ]
39
39
pub unsafe fn __sev ( ) {
40
40
hint ( HINT_SEV ) ;
@@ -59,7 +59,7 @@ pub unsafe fn __sevl() {
59
59
/// improve overall system performance.
60
60
// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
61
61
// LLVM says "instruction requires: armv6k"
62
- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
62
+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
63
63
#[ inline( always) ]
64
64
pub unsafe fn __yield ( ) {
65
65
hint ( HINT_YIELD ) ;
0 commit comments