2022-04-23 11:59:50 +03:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-04-02 09:43:26 +03:00
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_funcs.h"
|
|
|
|
|
2021-04-15 02:07:40 +03:00
|
|
|
#include "common/settings.h"
|
2021-04-14 04:38:10 +03:00
|
|
|
|
2021-04-02 09:43:26 +03:00
|
|
|
void assert_handle_failure() {
|
2021-04-14 04:38:10 +03:00
|
|
|
if (Settings::values.use_debug_asserts) {
|
|
|
|
Crash();
|
|
|
|
}
|
2021-04-02 09:43:26 +03:00
|
|
|
}
|
2022-06-08 00:02:29 +03:00
|
|
|
|
|
|
|
[[noreturn]] void unreachable_impl() {
|
|
|
|
Crash();
|
|
|
|
throw std::runtime_error("Unreachable code");
|
|
|
|
}
|