aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Basic/CmdLineOptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Basic/CmdLineOptions.cpp')
-rw-r--r--lib/Basic/CmdLineOptions.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/Basic/CmdLineOptions.cpp b/lib/Basic/CmdLineOptions.cpp
index 20c190a5..399c27a2 100644
--- a/lib/Basic/CmdLineOptions.cpp
+++ b/lib/Basic/CmdLineOptions.cpp
@@ -139,6 +139,19 @@ llvm::cl::opt<CoreSolverType> CoreSolverToUse(
clEnumValN(Z3_SOLVER, "z3", "Z3" Z3_IS_DEFAULT_STR),
clEnumValEnd),
llvm::cl::init(DEFAULT_CORE_SOLVER));
+
+llvm::cl::opt<CoreSolverType> DebugCrossCheckCoreSolverWith(
+ "debug-crosscheck-core-solver",
+ llvm::cl::desc(
+ "Specifiy a solver to use for cross checking with the core solver"),
+ llvm::cl::values(clEnumValN(STP_SOLVER, "stp", "stp"),
+ clEnumValN(METASMT_SOLVER, "metasmt", "metaSMT"),
+ clEnumValN(DUMMY_SOLVER, "dummy", "Dummy solver"),
+ clEnumValN(Z3_SOLVER, "z3", "Z3"),
+ clEnumValN(NO_SOLVER, "none",
+ "Do not cross check (default)"),
+ clEnumValEnd),
+ llvm::cl::init(NO_SOLVER));
}
#undef STP_IS_DEFAULT_STR
#undef METASMT_IS_DEFAULT_STR