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:
parent
2342c4522c
commit
3e682ea733
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue