]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
MFV r329774:
[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(x, #x, __FUNCTION__, __FILE__, __LINE__)
18 #endif
19
20 namespace lldb_private {
21 void lldb_assert(bool expression, const char *expr_text, const char *func,
22                  const char *file, unsigned int line);
23 }
24
25 #endif // utility_LLDBAssert_h_