From e2a2fceee17dbf7323b2dac00feb2293365fcc34 Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Thu, 18 Oct 2012 19:45:55 +0000 Subject: Nice patch by Hristina Palikareva that removes the dependency on STP arrays from the Array and UpdateNode classes. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@166214 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Core/StatsTracker.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/Core/StatsTracker.cpp') 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(); } -- cgit 1.4.1