[dynarmic] fix pch gen #231
1 changed files with 15 additions and 0 deletions
|
@ -14,19 +14,34 @@ template<typename... Ts>
|
||||||
assert_terminate_impl(expr_str, msg, fmt::make_format_args(args...));
|
assert_terminate_impl(expr_str, msg, fmt::make_format_args(args...));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Temporary until MCL is fully removed
|
||||||
|
#ifndef ASSERT_MSG
|
||||||
#define ASSERT_MSG(_a_, ...) \
|
#define ASSERT_MSG(_a_, ...) \
|
||||||
([&]() { \
|
([&]() { \
|
||||||
if (!(_a_)) [[unlikely]] { \
|
if (!(_a_)) [[unlikely]] { \
|
||||||
assert_terminate(#_a_, __VA_ARGS__); \
|
assert_terminate(#_a_, __VA_ARGS__); \
|
||||||
} \
|
} \
|
||||||
}())
|
}())
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef ASSERT
|
||||||
#define ASSERT(_a_) ASSERT_MSG(_a_, "")
|
#define ASSERT(_a_) ASSERT_MSG(_a_, "")
|
||||||
|
#endif
|
||||||
|
#ifndef UNREACHABLE
|
||||||
#define UNREACHABLE() ASSERT_MSG(false, "unreachable")
|
#define UNREACHABLE() ASSERT_MSG(false, "unreachable")
|
||||||
|
#endif
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
#ifndef DEBUG_ASSERT
|
||||||
#define DEBUG_ASSERT(_a_) ASSERT(_a_)
|
#define DEBUG_ASSERT(_a_) ASSERT(_a_)
|
||||||
|
#endif
|
||||||
|
#ifndef DEBUG_ASSERT_MSG
|
||||||
#define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__)
|
#define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__)
|
||||||
|
#endif
|
||||||
#else // not debug
|
#else // not debug
|
||||||
|
#ifndef DEBUG_ASSERT
|
||||||
#define DEBUG_ASSERT(_a_)
|
#define DEBUG_ASSERT(_a_)
|
||||||
|
#endif
|
||||||
|
#ifndef DEBUG_ASSERT_MSG
|
||||||
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...)
|
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue