aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Core
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Core')
-rw-r--r--lib/Core/StatsTracker.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp
index e2fa0d35..f81d19d8 100644
--- a/lib/Core/StatsTracker.cpp
+++ b/lib/Core/StatsTracker.cpp
@@ -372,6 +372,9 @@ void StatsTracker::writeStatsHeader() {
<< "'CexCacheTime',"
<< "'ForkTime',"
<< "'ResolveTime',"
+#ifdef DEBUG
+ << "'ArrayHashTime',"
+#endif
<< ")\n";
statsFile->flush();
}
@@ -399,6 +402,9 @@ void StatsTracker::writeStatsLine() {
<< "," << stats::cexCacheTime / 1000000.
<< "," << stats::forkTime / 1000000.
<< "," << stats::resolveTime / 1000000.
+#ifdef DEBUG
+ << "," << stats::arrayHashTime / 1000000.
+#endif
<< ")\n";
statsFile->flush();
}