diff options
Diffstat (limited to 'lib/Core')
-rw-r--r-- | lib/Core/StatsTracker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp index d9ec35aa..f2a989e2 100644 --- a/lib/Core/StatsTracker.cpp +++ b/lib/Core/StatsTracker.cpp @@ -418,7 +418,7 @@ void StatsTracker::writeStatsHeader() { << "'ResolveTime'," << "'QueryCexCacheMisses'," << "'QueryCexCacheHits'," -#ifdef DEBUG +#ifdef KLEE_ARRAY_DEBUG << "'ArrayHashTime'," #endif << ")\n"; @@ -450,7 +450,7 @@ void StatsTracker::writeStatsLine() { << "," << stats::resolveTime / 1000000. << "," << stats::queryCexCacheMisses << "," << stats::queryCexCacheHits -#ifdef DEBUG +#ifdef KLEE_ARRAY_DEBUG << "," << stats::arrayHashTime / 1000000. #endif << ")\n"; |