about summary refs log tree commit diff homepage
path: root/lib/Basic
diff options
context:
space:
mode:
authorHristina Palikareva <h.palikareva@imperial.ac.uk>2013-10-15 14:31:49 +0100
committerHristina Palikareva <h.palikareva@imperial.ac.uk>2013-10-15 14:31:49 +0100
commit7b46fc6cc9d9104a226d28f286b19fffc5a1e029 (patch)
tree52f726442878080a79ddd94ebd4ef858d2216e38 /lib/Basic
parentf53b2ebc74acd9d31b54f21434e1b21eed7f5787 (diff)
downloadklee-7b46fc6cc9d9104a226d28f286b19fffc5a1e029.tar.gz
command-line option --use-metasmt declared and defined inside #ifdef SUPPORT_METASMT ... #endif macros
Diffstat (limited to 'lib/Basic')
-rw-r--r--lib/Basic/CmdLineOptions.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Basic/CmdLineOptions.cpp b/lib/Basic/CmdLineOptions.cpp
index 1201ac29..eac54141 100644
--- a/lib/Basic/CmdLineOptions.cpp
+++ b/lib/Basic/CmdLineOptions.cpp
@@ -73,6 +73,7 @@ llvm::cl::list<QueryLoggingSolverType> queryLoggingOptions(
     llvm::cl::CommaSeparated
 );
 
+#ifdef SUPPORT_METASMT
 
 llvm::cl::opt<klee::MetaSMTBackendType>
 UseMetaSMT("use-metasmt",
@@ -84,6 +85,10 @@ UseMetaSMT("use-metasmt",
                       clEnumValEnd),  
            llvm::cl::init(METASMT_BACKEND_NONE));
 
+#endif /* SUPPORT_METASMT */
 
 }
 
+
+
+