fix parenthesis in #if condition

This commit is contained in:
Daan 2025-03-28 13:09:24 -07:00
parent eb992b1d19
commit 1052c30f03

View file

@ -372,7 +372,7 @@ static inline void mi_atomic_yield(void) {
#elif (defined(__GNUC__) || defined(__clang__)) && \ #elif (defined(__GNUC__) || defined(__clang__)) && \
(defined(__x86_64__) || defined(__i386__) || \ (defined(__x86_64__) || defined(__i386__) || \
defined(__aarch64__) || defined(__arm__) || \ defined(__aarch64__) || defined(__arm__) || \
defined(__powerpc__) || defined(__ppc__) || defined(__PPC__)) || defined(__POWERPC__) defined(__powerpc__) || defined(__ppc__) || defined(__PPC__) || defined(__POWERPC__))
#if defined(__x86_64__) || defined(__i386__) #if defined(__x86_64__) || defined(__i386__)
static inline void mi_atomic_yield(void) { static inline void mi_atomic_yield(void) {
__asm__ volatile ("pause" ::: "memory"); __asm__ volatile ("pause" ::: "memory");