Skip to content

Commit 23e51e4

Browse files
japaricgnzlbg
authored andcommitted
acle/hints: most hints require 'v6' rather than 'v6k'
addresses #557 (comment)
1 parent 2c8c8f0 commit 23e51e4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/core_arch/src/acle/hints.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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)]
1414
pub 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)]
2727
pub 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)]
3939
pub 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)]
6464
pub unsafe fn __yield() {
6565
hint(HINT_YIELD);

0 commit comments

Comments
 (0)