about summary refs log tree commit diff homepage
path: root/lib/Module/Instrument.cpp
diff options
context:
space:
mode:
authorMartin Nowack <m.nowack@imperial.ac.uk>2023-10-12 11:16:18 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2024-02-08 13:17:19 +0000
commit2a75a6d6fdb665d92bafee75cb9c08ca3cc05ea1 (patch)
treeea95b2da9ff1b93bd1c2230b5065325f46d08fcc /lib/Module/Instrument.cpp
parent2b75ab2af15527c9051f1d236427232bb2295d93 (diff)
downloadklee-2a75a6d6fdb665d92bafee75cb9c08ca3cc05ea1.tar.gz
Refactor invocation of old pass manager into legacy function
Diffstat (limited to 'lib/Module/Instrument.cpp')
-rw-r--r--lib/Module/Instrument.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/Module/Instrument.cpp b/lib/Module/Instrument.cpp
new file mode 100644
index 00000000..bbb5df7c
--- /dev/null
+++ b/lib/Module/Instrument.cpp
@@ -0,0 +1,19 @@
+//===-- Instrument.cpp ------------------------------------------*- C++ -*-===//
+//
+//                     The KLEE Symbolic Virtual Machine
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "ModuleHelper.h"
+
+using namespace klee;
+
+void klee::checkModule(bool DontVerfify, llvm::Module *module) { assert(0); }
+
+void klee::instrument(bool CheckDivZero, bool CheckOvershift,
+                      llvm::Module *module) {
+  assert(0);
+}
\ No newline at end of file