Take out the "yield" arm64 implementation, that uses a builtin that some compilers miss.

It's not used anyway yet.

Fixes #17877
This commit is contained in:
Henrik Rydgård 2023-08-09 12:20:27 +02:00
parent 2342c4522c
commit 3e682ea733

View file

@ -99,7 +99,8 @@ void yield() {
#if PPSSPP_ARCH(X86) || PPSSPP_ARCH(AMD64)
_mm_pause();
#elif PPSSPP_ARCH(ARM64)
__builtin_arm_isb(15);
// Took this out for now. See issue #17877
// __builtin_arm_isb(15);
#endif
}