99/// low-power state until one of a number of asynchronous events occurs.
1010// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
1111// LLVM says "instruction requires: armv6k"
12- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
12+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
1313#[ inline( always) ]
1414pub unsafe fn __wfi ( ) {
1515 hint ( HINT_WFI ) ;
@@ -22,7 +22,7 @@ pub unsafe fn __wfi() {
2222/// another processor.
2323// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
2424// LLVM says "instruction requires: armv6k"
25- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
25+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
2626#[ inline( always) ]
2727pub unsafe fn __wfe ( ) {
2828 hint ( HINT_WFE ) ;
@@ -34,7 +34,7 @@ pub unsafe fn __wfe() {
3434/// system. It is a NOP on a uniprocessor system.
3535// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M, 7-M
3636// LLVM says "instruction requires: armv6k"
37- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
37+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
3838#[ inline( always) ]
3939pub unsafe fn __sev ( ) {
4040 hint ( HINT_SEV ) ;
@@ -59,7 +59,7 @@ pub unsafe fn __sevl() {
5959/// improve overall system performance.
6060// Section 10.1 of ACLE says that the supported arches are: 8, 6K, 6-M
6161// LLVM says "instruction requires: armv6k"
62- #[ cfg( any( target_feature = "v6k " , target_arch = "aarch64" ) ) ]
62+ #[ cfg( any( target_feature = "v6 " , target_arch = "aarch64" ) ) ]
6363#[ inline( always) ]
6464pub unsafe fn __yield ( ) {
6565 hint ( HINT_YIELD ) ;
0 commit comments