diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/ExecutionTree.cpp | 2 | ||||
-rw-r--r-- | lib/Core/ExecutionTreeWriter.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Core/ExecutionTree.cpp b/lib/Core/ExecutionTree.cpp index fb4913c7..a2c8821c 100644 --- a/lib/Core/ExecutionTree.cpp +++ b/lib/Core/ExecutionTree.cpp @@ -29,7 +29,7 @@ llvm::cl::OptionCategory namespace { llvm::cl::opt<bool> CompressExecutionTree( - "compress-execution-tree", + "compress-exec-tree", llvm::cl::desc("Remove intermediate nodes in the execution " "tree whenever possible (default=false)"), llvm::cl::init(false), llvm::cl::cat(ExecTreeCat)); diff --git a/lib/Core/ExecutionTreeWriter.cpp b/lib/Core/ExecutionTreeWriter.cpp index 10cd5c27..e1091eb0 100644 --- a/lib/Core/ExecutionTreeWriter.cpp +++ b/lib/Core/ExecutionTreeWriter.cpp @@ -17,9 +17,9 @@ namespace { llvm::cl::opt<unsigned> BatchSize( - "ptree-batch-size", llvm::cl::init(100U), + "exec-tree-batch-size", llvm::cl::init(100U), llvm::cl::desc("Number of execution tree nodes to batch for writing, " - "see --write-execution-tree (default=100)"), + "see --write-exec-tree (default=100)"), llvm::cl::cat(klee::ExecTreeCat)); } // namespace |