diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-04-03 19:37:11 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-04-30 09:25:36 +0100 |
commit | fc50ab32349a4cc61980ba5b97bfa7c3961ce964 (patch) | |
tree | cbae8038ae68b0c979f5421d51d20e0a682a76db /tools | |
parent | 02fed84be089d81a5a9a812c2c8dd112f5e2fa71 (diff) | |
download | klee-fc50ab32349a4cc61980ba5b97bfa7c3961ce964.tar.gz |
Moved header files that were placed directly in include/klee/ into appropriate existing directories and a new directory Statistics; a few missing renames.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/kleaver/main.cpp | 8 | ||||
-rw-r--r-- | tools/klee/main.cpp | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/tools/kleaver/main.cpp b/tools/kleaver/main.cpp index ed606a77..512a1e4e 100644 --- a/tools/kleaver/main.cpp +++ b/tools/kleaver/main.cpp @@ -7,7 +7,6 @@ // //===----------------------------------------------------------------------===// -#include "klee/Common.h" #include "klee/Config/Version.h" #include "klee/Expr/Constraints.h" #include "klee/Expr/Expr.h" @@ -17,12 +16,13 @@ #include "klee/Expr/ExprVisitor.h" #include "klee/Expr/Parser/Lexer.h" #include "klee/Expr/Parser/Parser.h" -#include "klee/Support/PrintVersion.h" -#include "klee/OptionCategories.h" +#include "klee/Solver/Common.h" +#include "klee/Support/OptionCategories.h" +#include "klee/Statistics/Statistics.h" #include "klee/Solver/Solver.h" #include "klee/Solver/SolverCmdLine.h" #include "klee/Solver/SolverImpl.h" -#include "klee/Statistics.h" +#include "klee/Support/PrintVersion.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Support/CommandLine.h" diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 06273879..ada08550 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -9,14 +9,14 @@ // //===----------------------------------------------------------------------===// -#include "klee/ADT/KTest.h" #include "klee/ADT/TreeStream.h" #include "klee/Config/Version.h" #include "klee/Core/Interpreter.h" #include "klee/Expr/Expr.h" -#include "klee/OptionCategories.h" +#include "klee/ADT/KTest.h" +#include "klee/Support/OptionCategories.h" +#include "klee/Statistics/Statistics.h" #include "klee/Solver/SolverCmdLine.h" -#include "klee/Statistics.h" #include "klee/Support/Debug.h" #include "klee/Support/ErrorHandling.h" #include "klee/Support/FileHandling.h" |