about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--lib/Solver/STPSolver.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Solver/STPSolver.cpp b/lib/Solver/STPSolver.cpp
index 6081ff95..abd0ebc3 100644
--- a/lib/Solver/STPSolver.cpp
+++ b/lib/Solver/STPSolver.cpp
@@ -14,6 +14,7 @@
 #include "klee/SolverImpl.h"
 #include "klee/Constraints.h"
 #include "klee/Internal/Support/ErrorHandling.h"
+#include "klee/OptionCategories.h"
 #include "klee/util/Assignment.h"
 #include "klee/util/ExprUtil.h"
 
@@ -32,11 +33,13 @@ namespace {
 
 llvm::cl::opt<bool> DebugDumpSTPQueries(
     "debug-dump-stp-queries", llvm::cl::init(false),
-    llvm::cl::desc("Dump every STP query to stderr (default=off)"));
+    llvm::cl::desc("Dump every STP query to stderr (default=off)"),
+    llvm::cl::cat(klee::SolvingCat));
 
 llvm::cl::opt<bool> IgnoreSolverFailures(
     "ignore-solver-failures", llvm::cl::init(false),
-    llvm::cl::desc("Ignore any solver failures (default=off)"));
+    llvm::cl::desc("Ignore any STP solver failures (default=off)"),
+    llvm::cl::cat(klee::SolvingCat));
 }
 
 #define vc_bvBoolExtract IAMTHESPAWNOFSATAN