about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2014-09-19 13:36:02 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2014-09-19 13:36:02 +0100
commit547dd6fbf929d769b7a9a38c152bfb315d7a25a0 (patch)
tree97d886bc175c4161b4511dd58bfa519ff92ff621 /include
parent2497fdcb63ab5af7c047b384f4373cd0f2b95f2d (diff)
downloadklee-547dd6fbf929d769b7a9a38c152bfb315d7a25a0.tar.gz
Removed code related to underConstrained, as it is unused (issue pointed out by @hpalikareva).
Diffstat (limited to 'include')
-rw-r--r--include/klee/ExecutionState.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h
index 824fbed5..97b700c1 100644
--- a/include/klee/ExecutionState.h
+++ b/include/klee/ExecutionState.h
@@ -72,9 +72,6 @@ private:
 
 public:
   bool fakeState;
-  // Are we currently underconstrained?  Hack: value is size to make fake
-  // objects.
-  unsigned underConstrained;
   unsigned depth;
   
   // pc - pointer to current instruction stream
@@ -113,7 +110,7 @@ public:
   void removeFnAlias(std::string fn);
   
 private:
-  ExecutionState() : fakeState(false), underConstrained(0), ptreeNode(0) {}
+  ExecutionState() : fakeState(false), ptreeNode(0) {}
 
 public:
   ExecutionState(KFunction *kf);