Kernel: Add VERIFY_NOT_REACHED to the aarch64 handle_crash function

This commit is contained in:
James Mintram 2022-04-04 22:04:05 +01:00 committed by Brian Gianforcaro
parent d014c0501d
commit e98ea8a977
Notes: sideshowbarker 2024-07-17 14:26:05 +09:00

View file

@ -13,6 +13,7 @@ namespace Kernel {
void handle_crash(Kernel::RegisterState const&, char const*, int, bool)
{
VERIFY_NOT_REACHED();
}
}