]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
MFV r347136:
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Utility / LLDBAssert.h
1 //===----------------- LLDBAssert.h ------------------------------*- C++-*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef utility_LLDBAssert_h_
11 #define utility_LLDBAssert_h_
12
13 #ifdef LLDB_CONFIGURATION_DEBUG
14 #define lldbassert(x) assert(x)
15 #else
16 #define lldbassert(x)                                                          \
17   lldb_private::lldb_assert(static_cast<bool>(x), #x, __FUNCTION__, __FILE__,  \
18                             __LINE__)
19 #endif
20
21 namespace lldb_private {
22 void lldb_assert(bool expression, const char *expr_text, const char *func,
23                  const char *file, unsigned int line);
24 }
25
26 #endif // utility_LLDBAssert_h_