diff options
Diffstat (limited to 'include/lldb/Utility/LLDBAssert.h')
-rw-r--r-- | include/lldb/Utility/LLDBAssert.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/lldb/Utility/LLDBAssert.h b/include/lldb/Utility/LLDBAssert.h new file mode 100644 index 0000000..5ca252f --- /dev/null +++ b/include/lldb/Utility/LLDBAssert.h @@ -0,0 +1,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_ |