diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-02-17 21:12:23 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-02-17 21:12:23 +0000 |
commit | 6b5699969d0dadaaee3f4eb51f18ce628fbfeca9 (patch) | |
tree | a594f5a13c46b4edc854bdfa38eff633d7445716 | |
parent | cdbf3672d61a4c88d6e438d35658d9d6d5e8ac28 (diff) |
Don't make the inclusion of crashtracer information depend on NDEBUG.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96515 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/CIndex/CIndex.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/CIndex/CIndex.cpp b/tools/CIndex/CIndex.cpp index d24bcf64df..5fc6168594 100644 --- a/tools/CIndex/CIndex.cpp +++ b/tools/CIndex/CIndex.cpp @@ -41,12 +41,11 @@ using namespace idx; //===----------------------------------------------------------------------===// #ifdef __APPLE__ -#ifndef NDEBUG #define USE_CRASHTRACER #include "clang/Analysis/Support/SaveAndRestore.h" // Integrate with crash reporter. extern "C" const char *__crashreporter_info__; -#define NUM_CRASH_STRINGS 16 +#define NUM_CRASH_STRINGS 32 static unsigned crashtracer_counter = 0; static unsigned crashtracer_counter_id[NUM_CRASH_STRINGS] = { 0 }; static const char *crashtracer_strings[NUM_CRASH_STRINGS] = { 0 }; @@ -119,7 +118,6 @@ public: }; } #endif -#endif /// \brief The result of comparing two source ranges. enum RangeComparisonResult { |