diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2017-06-07 13:32:53 +0200 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2017-06-12 17:07:05 +0100 |
commit | 6204a1faed8f6ed15318be8da3e8e4b5e2f2a4ac (patch) | |
tree | fa1d9d9a149cbfa496f26f133e3b44535e729ace /lib/Core/UserSearcher.cpp | |
parent | 5289c6135b7baef600257c614ef52f9af10a22e4 (diff) | |
download | klee-6204a1faed8f6ed15318be8da3e8e4b5e2f2a4ac.tar.gz |
llvm: don't use clEnumValEnd for LLVM 4.0
It became unnecessary when defining options and mainly undefined. So introduce KLEE_LLVM_CL_VAL_END as suggested by @delcypher. Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Diffstat (limited to 'lib/Core/UserSearcher.cpp')
-rw-r--r-- | lib/Core/UserSearcher.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/UserSearcher.cpp b/lib/Core/UserSearcher.cpp index 725836e8..2bbbe747 100644 --- a/lib/Core/UserSearcher.cpp +++ b/lib/Core/UserSearcher.cpp @@ -30,8 +30,8 @@ namespace { clEnumValN(Searcher::NURS_Depth, "nurs:depth", "use NURS with 2^depth"), clEnumValN(Searcher::NURS_ICnt, "nurs:icnt", "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"), - clEnumValEnd)); + clEnumValN(Searcher::NURS_QC, "nurs:qc", "use NURS with Query-Cost") + KLEE_LLVM_CL_VAL_END)); cl::opt<bool> UseIterativeDeepeningTimeSearch("use-iterative-deepening-time-search", |