about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2024-02-16 21:21:42 +0000
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2024-02-19 21:26:24 +0000
commit38c0f6796e15c409e05aea39c670ac0063a336e0 (patch)
tree3313b944adf5db5f497e1a8cb7f9a647593199bc
parent7679d0b5da6d7fd3e17d7cc66392b1df97694c75 (diff)
downloadklee-38c0f6796e15c409e05aea39c670ac0063a336e0.tar.gz
Rename --ptree-batch-size to --exec-tree-batch size, and --compress-execution-tree to --compress-exec-tree. Fix an incorrect reference to --write-exec-tree.
-rw-r--r--lib/Core/ExecutionTree.cpp2
-rw-r--r--lib/Core/ExecutionTreeWriter.cpp4
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