diff options
author | Hristina Palikareva <h.palikareva@imperial.ac.uk> | 2013-10-15 14:31:49 +0100 |
---|---|---|
committer | Hristina Palikareva <h.palikareva@imperial.ac.uk> | 2013-10-15 14:31:49 +0100 |
commit | 7b46fc6cc9d9104a226d28f286b19fffc5a1e029 (patch) | |
tree | 52f726442878080a79ddd94ebd4ef858d2216e38 /include | |
parent | f53b2ebc74acd9d31b54f21434e1b21eed7f5787 (diff) | |
download | klee-7b46fc6cc9d9104a226d28f286b19fffc5a1e029.tar.gz |
command-line option --use-metasmt declared and defined inside #ifdef SUPPORT_METASMT ... #endif macros
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/CommandLine.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/klee/CommandLine.h b/include/klee/CommandLine.h index c755114b..c4c70069 100644 --- a/include/klee/CommandLine.h +++ b/include/klee/CommandLine.h @@ -7,6 +7,7 @@ #define KLEE_COMMANDLINE_H #include "llvm/Support/CommandLine.h" +#include "klee/Config/config.h" namespace klee { @@ -43,6 +44,8 @@ enum QueryLoggingSolverType */ extern llvm::cl::list<QueryLoggingSolverType> queryLoggingOptions; +#ifdef SUPPORT_METASMT + enum MetaSMTBackendType { METASMT_BACKEND_NONE, @@ -53,6 +56,8 @@ enum MetaSMTBackendType extern llvm::cl::opt<klee::MetaSMTBackendType> UseMetaSMT; +#endif /* SUPPORT_METASMT */ + //A bit of ugliness so we can use cl::list<> like cl::bits<>, see queryLoggingOptions template <typename T> static bool optionIsSet(llvm::cl::list<T> list, T option) |