From 0c9492f300d56321062c1206290ec469cacbd062 Mon Sep 17 00:00:00 2001 From: klzgrad Date: Sun, 14 Jun 2026 09:09:44 +0800 Subject: [PATCH] Fix build for CPU yield --- src/base/synchronization/lock_subtle.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/base/synchronization/lock_subtle.h b/src/base/synchronization/lock_subtle.h index d06c0e6b50..40500c27ff 100644 --- a/src/base/synchronization/lock_subtle.h +++ b/src/base/synchronization/lock_subtle.h @@ -68,7 +68,6 @@ static inline void YieldProcessor() { // See also https://sourceware.org/pipermail/libc-alpha/2024-June/157737.html __asm__ __volatile__(".insn i 0x0f, 0, x0, x0, 0x010"); #else -#error "Unsupported architecture for YieldProcessor()" #endif // ARCH }