about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorDaniel Schemmel <daniel.schemmel@comsys.rwth-aachen.de>2018-05-08 01:04:16 +0200
committerMartinNowack <martin.nowack@gmail.com>2018-05-08 11:32:57 +0100
commitdcea8bb90525bab566d01bd8c4134646f7cd0635 (patch)
treeb6f85e42a281f1a2cc91584204045cc294596c63
parentf1163a3f9b7e7555f25f2b69ba5a7a95047895c0 (diff)
downloadklee-dcea8bb90525bab566d01bd8c4134646f7cd0635.tar.gz
remove unused file: tools/klee/Debug.cpp
-rw-r--r--tools/klee/Debug.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/klee/Debug.cpp b/tools/klee/Debug.cpp
deleted file mode 100644
index fbabed9d..00000000
--- a/tools/klee/Debug.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <klee/Expr.h>
-
-void kdb_printExpr(klee::Expr *e) {
-  llvm::errs() << "expr: " << e << " -- ";
-  if (e) {
-    llvm::errs() << *e;
-  } else {
-    llvm::errs() << "(null)";
-  }
-  llvm::errs() << "\n";
-}