diff options
| author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2023-07-07 23:55:47 +0100 |
|---|---|---|
| committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2023-07-21 10:00:02 +0100 |
| commit | 974f140d79a621785b1fe4a0fc7fe321ba1089e2 (patch) | |
| tree | 8a525ba4336a7606a448c9d2f2ea4883ff3baa47 /include | |
| parent | 9cb9fd54846415d0c271cd178d4a9bfe6493ad00 (diff) | |
| download | klee-974f140d79a621785b1fe4a0fc7fe321ba1089e2.tar.gz | |
Move some options to the klee namespace and declare them in OptionCategories.h
Diffstat (limited to 'include')
| -rw-r--r-- | include/klee/Support/OptionCategories.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/klee/Support/OptionCategories.h b/include/klee/Support/OptionCategories.h index bde9a4eb..430ff7b1 100644 --- a/include/klee/Support/OptionCategories.h +++ b/include/klee/Support/OptionCategories.h @@ -22,11 +22,16 @@ DISABLE_WARNING_POP namespace klee { extern llvm::cl::OptionCategory DebugCat; + extern llvm::cl::OptionCategory ExprCat; + extern llvm::cl::OptionCategory ExtCallsCat; + extern llvm::cl::OptionCategory MemoryCat; extern llvm::cl::OptionCategory MergeCat; extern llvm::cl::OptionCategory MiscCat; extern llvm::cl::OptionCategory ModuleCat; + extern llvm::cl::OptionCategory SearchCat; extern llvm::cl::OptionCategory SeedingCat; extern llvm::cl::OptionCategory SolvingCat; + extern llvm::cl::OptionCategory StatsCat; extern llvm::cl::OptionCategory TerminationCat; extern llvm::cl::OptionCategory TestGenCat; } |
