about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2022-01-06 09:55:40 +0000
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2022-01-07 12:46:01 +0000
commit63c24a3dc620b1012010bbc06afc1b6a22eeda9d (patch)
treedb92904da87b0ee4fedb2a0d09864d71b25dfd9b
parente2abd854b8267dadd2399b70d1cda9a6acd6d737 (diff)
downloadklee-63c24a3dc620b1012010bbc06afc1b6a22eeda9d.tar.gz
stats: remove reachableUncovered (unused)
-rw-r--r--lib/Core/CoreStats.cpp1
-rw-r--r--lib/Core/CoreStats.h4
2 files changed, 0 insertions, 5 deletions
diff --git a/lib/Core/CoreStats.cpp b/lib/Core/CoreStats.cpp
index ca2ef1c9..2589d7da 100644
--- a/lib/Core/CoreStats.cpp
+++ b/lib/Core/CoreStats.cpp
@@ -21,7 +21,6 @@ Statistic stats::instructionTime("InstructionTimes", "Itime");
 Statistic stats::instructions("Instructions", "I");
 Statistic stats::minDistToReturn("MinDistToReturn", "Rdist");
 Statistic stats::minDistToUncovered("MinDistToUncovered", "UCdist");
-Statistic stats::reachableUncovered("ReachableUncovered", "IuncovReach");
 Statistic stats::resolveTime("ResolveTime", "Rtime");
 Statistic stats::solverTime("SolverTime", "Stime");
 Statistic stats::states("States", "States");
diff --git a/lib/Core/CoreStats.h b/lib/Core/CoreStats.h
index 1e463c65..354706f5 100644
--- a/lib/Core/CoreStats.h
+++ b/lib/Core/CoreStats.h
@@ -34,10 +34,6 @@ namespace stats {
   /// isn't normally up-to-date.
   extern Statistic states;
 
-  /// Instruction level statistic for tracking number of reachable
-  /// uncovered instructions.
-  extern Statistic reachableUncovered;
-
   /// Instruction level statistic tracking the minimum intraprocedural
   /// distance to an uncovered instruction; this is only periodically
   /// updated.