From 38c0f6796e15c409e05aea39c670ac0063a336e0 Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Fri, 16 Feb 2024 21:21:42 +0000 Subject: 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. --- lib/Core/ExecutionTree.cpp | 2 +- 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 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 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 -- cgit 1.4.1