aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Core
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Core')
-rw-r--r--lib/Core/Executor.cpp8
-rw-r--r--lib/Core/UserSearcher.cpp3
2 files changed, 4 insertions, 7 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp
index 682711d3..1a16d389 100644
--- a/lib/Core/Executor.cpp
+++ b/lib/Core/Executor.cpp
@@ -192,8 +192,7 @@ cl::opt<ExternalCallPolicy> ExternalCalls(
"allowed (default)"),
clEnumValN(ExternalCallPolicy::All, "all",
"All external function calls are allowed. This concretizes "
- "any symbolic arguments in calls to external functions.")
- KLEE_LLVM_CL_VAL_END),
+ "any symbolic arguments in calls to external functions.")),
cl::init(ExternalCallPolicy::Concrete),
cl::cat(ExtCallsCat));
@@ -293,8 +292,7 @@ cl::list<StateTerminationType> ExitOnErrorType(
clEnumValN(StateTerminationType::ReportError, "ReportError",
"klee_report_error called"),
clEnumValN(StateTerminationType::User, "User",
- "Wrong klee_* functions invocation")
- KLEE_LLVM_CL_VAL_END),
+ "Wrong klee_* functions invocation")),
cl::ZeroOrMore,
cl::cat(TerminationCat));
@@ -412,7 +410,7 @@ llvm::cl::bits<PrintDebugInstructionsType> DebugPrintInstructions(
"inst_id]"),
clEnumValN(FILE_COMPACT, "compact:file",
"Log all instructions to file instructions.txt in format "
- "[inst_id]") KLEE_LLVM_CL_VAL_END),
+ "[inst_id]")),
llvm::cl::CommaSeparated,
cl::cat(DebugCat));
diff --git a/lib/Core/UserSearcher.cpp b/lib/Core/UserSearcher.cpp
index e1534f70..398c44a9 100644
--- a/lib/Core/UserSearcher.cpp
+++ b/lib/Core/UserSearcher.cpp
@@ -47,8 +47,7 @@ cl::list<Searcher::CoreSearchType> CoreSearch(
"use NURS with Instr-Count"),
clEnumValN(Searcher::NURS_CPICnt, "nurs:cpicnt",
"use NURS with CallPath-Instr-Count"),
- clEnumValN(Searcher::NURS_QC, "nurs:qc", "use NURS with Query-Cost")
- KLEE_LLVM_CL_VAL_END),
+ clEnumValN(Searcher::NURS_QC, "nurs:qc", "use NURS with Query-Cost")),
cl::cat(SearchCat));
cl::opt<bool> UseIterativeDeepeningTimeSearch(