We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a6cc8 commit bd71133Copy full SHA for bd71133
crates/core_arch/src/acle/hints.rs
@@ -46,7 +46,10 @@ pub unsafe fn __sev() {
46
/// instruction. In a multiprocessor system, it is not required to affect the
47
/// other processors.
48
// LLVM says "instruction requires: armv8"
49
-#[cfg(target_feature = "v8")]
+#[cfg(any(
50
+ target_feature = "v8", // 32-bit ARMv8
51
+ target_arch = "aarch64", // AArch64
52
+))]
53
#[inline(always)]
54
pub unsafe fn __sevl() {
55
hint(HINT_SEVL);
0 commit comments