about summary refs log tree commit diff homepage
path: root/lib/Core/Memory.h
diff options
context:
space:
mode:
authorDan Liew <delcypher@gmail.com>2015-12-18 12:48:18 +0000
committerDan Liew <delcypher@gmail.com>2015-12-18 12:48:18 +0000
commit535be01be5ab33a0e7106e2d5511bba2797d1ed0 (patch)
tree026a4f1b16c1996755954f7824e0d10f8ed0ef8e /lib/Core/Memory.h
parent7e75fa79b2e76251c2cd417a7eae8a7620b014ae (diff)
parent53ff7a002a8213a5d5e778bef2a895998d9890e1 (diff)
downloadklee-535be01be5ab33a0e7106e2d5511bba2797d1ed0.tar.gz
Merge pull request #315 from delcypher/array_leak
Try to fix leaking Array objects detected by ASan.
Diffstat (limited to 'lib/Core/Memory.h')
-rw-r--r--lib/Core/Memory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Core/Memory.h b/lib/Core/Memory.h
index 637f8772..d08bfb0c 100644
--- a/lib/Core/Memory.h
+++ b/lib/Core/Memory.h
@@ -27,6 +27,7 @@ namespace klee {
 class BitArray;
 class MemoryManager;
 class Solver;
+class ArrayCache;
 
 class MemoryObject {
   friend class STPBuilder;
@@ -234,6 +235,7 @@ private:
   void setKnownSymbolic(unsigned offset, Expr *value);
 
   void print();
+  ArrayCache *getArrayCache() const;
 };
   
 } // End klee namespace