aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Utility/LLDBAssert.h
blob: 5ca252f2003228acd55d2383679f3732d86e67bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//===----------------- LLDBAssert.h --------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef utility_LLDBAssert_h_
#define utility_LLDBAssert_h_

#include <assert.h>

#ifdef LLDB_CONFIGURATION_DEBUG
#define lldbassert(x) assert(x)
#else
#define lldbassert(x) lldb_private::lldb_assert(x, #x, __FUNCTION__, __FILE__, __LINE__)
#endif

namespace lldb_private {
    void
    lldb_assert (bool expression,
                 const char* expr_text,
                 const char* func,
                 const char* file,
                 unsigned int line);
}

#endif // utility_LLDBAssert_h_