mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-03 14:09:31 +03:00
fix parenthesis in #if condition
This commit is contained in:
parent
eb992b1d19
commit
1052c30f03
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||||
|
|
Loading…
Add table
Reference in a new issue