Skip to content
Permalink
Browse files
Merge pull request #9296 from JosJuice/issue-12327-workaround
JitArm64: Add a workaround for issue 12327
  • Loading branch information
leoetlino committed Nov 28, 2020
2 parents 01e0aba + d2a34fd commit cf32c4d
Showing 1 changed file with 4 additions and 0 deletions.
@@ -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
}
}
}

0 comments on commit cf32c4d

Please sign in to comment.