mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:27:45 +00:00
Kernel: Enable VERIFY() checks even if the DEBUG macro is not defined
Fixes #7910.
This commit is contained in:
parent
eea95c4532
commit
bcf6da8cde
2 changed files with 2 additions and 9 deletions
|
@ -9,14 +9,9 @@
|
|||
#define __STRINGIFY_HELPER(x) #x
|
||||
#define __STRINGIFY(x) __STRINGIFY_HELPER(x)
|
||||
|
||||
#ifdef DEBUG
|
||||
[[noreturn]] void __assertion_failed(const char* msg, const char* file, unsigned line, const char* func);
|
||||
# define VERIFY(expr) (static_cast<bool>(expr) ? void(0) : __assertion_failed(# expr, __FILE__, __LINE__, __PRETTY_FUNCTION__))
|
||||
# define VERIFY_NOT_REACHED() VERIFY(false)
|
||||
#else
|
||||
# define VERIFY(expr)
|
||||
# define VERIFY_NOT_REACHED() _abort()
|
||||
#endif
|
||||
#define VERIFY(expr) (static_cast<bool>(expr) ? void(0) : __assertion_failed(#expr, __FILE__, __LINE__, __PRETTY_FUNCTION__))
|
||||
#define VERIFY_NOT_REACHED() VERIFY(false)
|
||||
|
||||
extern "C" {
|
||||
[[noreturn]] void _abort();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue