Merge pull request #106390 from akien-mga/linux-drop-ppc32

Linux: Drop `ppc32` (32-bit PowerPC) architecture support
This commit is contained in:
Thaddeus Crews 2025-05-28 09:47:34 -05:00
commit bb47f01481
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
10 changed files with 9 additions and 32 deletions

View file

@ -81,7 +81,7 @@ _ALWAYS_INLINE_ static void _cpu_pause() {
__builtin_ia32_pause();
#elif defined(__arm__) || defined(__aarch64__) // ARM.
asm volatile("yield");
#elif defined(__powerpc__) || defined(__ppc__) || defined(__PPC__) // PowerPC.
#elif defined(__powerpc__) // PowerPC.
asm volatile("or 27,27,27");
#elif defined(__riscv) // RISC-V.
asm volatile(".insn i 0x0F, 0, x0, x0, 0x010");