about summary refs log tree commit diff homepage
path: root/include/klee/Internal/Module/KModule.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/klee/Internal/Module/KModule.h')
-rw-r--r--include/klee/Internal/Module/KModule.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/klee/Internal/Module/KModule.h b/include/klee/Internal/Module/KModule.h
index 86be131b..80672b5e 100644
--- a/include/klee/Internal/Module/KModule.h
+++ b/include/klee/Internal/Module/KModule.h
@@ -110,6 +110,13 @@ namespace klee {
 
     Cell *constantTable;
 
+    // Functions which are part of KLEE runtime
+    std::set<const llvm::Function*> internalFunctions;
+
+  private:
+    // Mark function with functionName as part of the KLEE runtime
+    void addInternalFunction(const char* functionName);
+
   public:
     KModule(llvm::Module *_module);
     ~KModule();