about summary refs log tree commit diff homepage
path: root/lib/Expr/AssignmentGenerator.cpp
diff options
context:
space:
mode:
authorMartin Nowack <m.nowack@imperial.ac.uk>2018-10-18 12:41:07 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2018-10-23 18:53:46 +0300
commit6bd5d045f2cb19331feb34d7ea74f748c5568a91 (patch)
treeeb1147b7b7e5dc02d36011992f7311840fef95f6 /lib/Expr/AssignmentGenerator.cpp
parenta72a2a9622aa05bd6eb1ffeb66e0db47b8cc4745 (diff)
downloadklee-6bd5d045f2cb19331feb34d7ea74f748c5568a91.tar.gz
Clean-up headers
Remove unneeded headers from include files
Diffstat (limited to 'lib/Expr/AssignmentGenerator.cpp')
-rw-r--r--lib/Expr/AssignmentGenerator.cpp19
1 files changed, 16 insertions, 3 deletions
diff --git a/lib/Expr/AssignmentGenerator.cpp b/lib/Expr/AssignmentGenerator.cpp
index 4a1d68d8..a906f796 100644
--- a/lib/Expr/AssignmentGenerator.cpp
+++ b/lib/Expr/AssignmentGenerator.cpp
@@ -7,9 +7,22 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "klee/AssignmentGenerator.h"
-
-#include "llvm/Support/raw_ostream.h"
+#include "../../include/klee/AssignmentGenerator.h"
+
+#include <cassert>
+#include <cstdint>
+#include <llvm/ADT/APInt.h>
+#include <llvm/Support/Casting.h>
+#include <llvm/Support/raw_ostream.h>
+#include <map>
+#include <set>
+#include <stddef.h>
+#include <string>
+#include <utility>
+
+#include "klee/Internal/Support/ErrorHandling.h"
+#include "klee/klee.h"
+#include "klee/util/Assignment.h"
 
 using namespace klee;