From d2a34fdab72877ba215f24441fec506e7a00b097 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 28 Nov 2020 22:35:49 +0100 Subject: [PATCH] JitArm64: Add a workaround for issue 12327 This issue is both severe and surprisingly difficult to find the root cause of, so I think it would make sense to add a simple hotfix for now. https://bugs.dolphin-emu.org/issues/12327 --- Source/Core/Core/PowerPC/PowerPC.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Core/PowerPC/PowerPC.cpp b/Source/Core/Core/PowerPC/PowerPC.cpp index 6a20d6a345..13200e0d6a 100644 --- a/Source/Core/Core/PowerPC/PowerPC.cpp +++ b/Source/Core/Core/PowerPC/PowerPC.cpp @@ -594,8 +594,12 @@ void CheckExternalExceptions() else { DEBUG_ASSERT_MSG(POWERPC, 0, "Unknown EXT interrupt: Exceptions == %08x", exceptions); + + // TODO: Re-enable this on ARM64 after fixing https://bugs.dolphin-emu.org/issues/12327 +#ifndef _M_ARM_64 ERROR_LOG_FMT(POWERPC, "Unknown EXTERNAL INTERRUPT exception: Exceptions == {:08x}", exceptions); +#endif } } }