diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/kleaver/main.cpp | 6 | ||||
-rw-r--r-- | tools/klee/main.cpp | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/tools/kleaver/main.cpp b/tools/kleaver/main.cpp index 558e7daf..22c23422 100644 --- a/tools/kleaver/main.cpp +++ b/tools/kleaver/main.cpp @@ -56,8 +56,7 @@ static llvm::cl::opt<ToolActions> ToolAction( clEnumValN(PrintAST, "print-ast", "Print parsed AST nodes from the input file."), clEnumValN(Evaluate, "evaluate", - "Evaluate parsed AST nodes from the input file.") - KLEE_LLVM_CL_VAL_END), + "Evaluate parsed AST nodes from the input file.")), llvm::cl::cat(klee::SolvingCat)); enum BuilderKinds { @@ -74,8 +73,7 @@ static llvm::cl::opt<BuilderKinds> BuilderKind( clEnumValN(ConstantFoldingBuilder, "constant-folding", "Fold constant expressions."), clEnumValN(SimplifyingBuilder, "simplify", - "Fold constants and simplify expressions.") - KLEE_LLVM_CL_VAL_END), + "Fold constants and simplify expressions.")), llvm::cl::cat(klee::ExprCat)); llvm::cl::opt<std::string> DirectoryToWriteQueryLogs( diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 740b33d7..5984c2f9 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -172,7 +172,7 @@ namespace { "Don't link in a libc (only provide freestanding environment)"), clEnumValN(LibcType::KleeLibc, "klee", "Link in KLEE's libc"), clEnumValN(LibcType::UcLibc, "uclibc", - "Link in uclibc (adapted for KLEE)") KLEE_LLVM_CL_VAL_END), + "Link in uclibc (adapted for KLEE)")), cl::init(LibcType::FreestandingLibc), cl::cat(LinkCat)); cl::list<std::string> |