Merge pull request #968 from devnexen/riscv_build_fix

cpu pause instruction for RISV-64 compatible gcc/clang.
This commit is contained in:
Yamagi 2023-02-04 17:41:09 +01:00 committed by GitHub
commit 6c6aa62032
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -95,6 +95,8 @@ static YQ2_ATTR_INLINE void Sys_CpuPause(void)
asm volatile("yield"); asm volatile("yield");
#elif defined(__powerpc__) || defined(__powerpc64__) #elif defined(__powerpc__) || defined(__powerpc64__)
asm volatile("or 27,27,27"); asm volatile("or 27,27,27");
#elif defined(__riscv) && __riscv_xlen == 64
asm volatile(".insn i 0x0F, 0, x0, x0, 0x010");
#endif #endif
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
#if defined(_M_IX86) || defined(_M_X64) #if defined(_M_IX86) || defined(_M_X64)