about summary refs log tree commit diff homepage
path: root/lib/Core/ExecutionTree.cpp
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 /lib/Core/ExecutionTree.cpp
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.
Diffstat (limited to 'lib/Core/ExecutionTree.cpp')
-rw-r--r--lib/Core/ExecutionTree.cpp2
1 files changed, 1 insertions, 1 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));