Skip to content

Commit

Permalink
Take out the "yield" arm64 implementation, that uses a builtin that s…
Browse files Browse the repository at this point in the history
…ome compilers miss.

It's not used anyway yet.

Fixes hrydgard#17877
  • Loading branch information
hrydgard committed Aug 9, 2023
1 parent 2342c45 commit 3e682ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Common/TimeUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 3e682ea

Please sign in to comment.