diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2018-10-18 12:59:04 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-10-23 18:53:46 +0300 |
commit | e13f4d5ea1201361ec96aa96afec7b5604c52082 (patch) | |
tree | 12770bf0e9a0ec171b18eeb5e2c5f8e55103183b /lib/Core/Executor.h | |
parent | 6bd5d045f2cb19331feb34d7ea74f748c5568a91 (diff) | |
download | klee-e13f4d5ea1201361ec96aa96afec7b5604c52082.tar.gz |
Move optimization specific headers away from the project include directory
Don't pollute the project include directory with optimization specific headers.
Diffstat (limited to 'lib/Core/Executor.h')
-rw-r--r-- | lib/Core/Executor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index 6a640905..d9e20f1e 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -16,7 +16,6 @@ #define KLEE_EXECUTOR_H #include "klee/ExecutionState.h" -#include "klee/ArrayExprOptimizer.h" #include "klee/Interpreter.h" #include "klee/Internal/Module/Cell.h" #include "klee/Internal/Module/KInstruction.h" @@ -26,10 +25,11 @@ #include "llvm/ADT/Twine.h" -#include <vector> -#include <string> +#include "../Expr/ArrayExprOptimizer.h" #include <map> #include <set> +#include <string> +#include <vector> struct KTest; |