Skip to content

Commit 67aa5b1

Browse files
authored
Rename option name (#1623)
* rename * FMT
1 parent 35e3877 commit 67aa5b1

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

libafl_cc/src/afl-coverage-pass.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ typedef uint32_t prev_loc_t;
8181

8282
using namespace llvm;
8383

84-
static cl::opt<bool> Debug("debug", cl::desc("Debug prints"), cl::init(false),
85-
cl::NotHidden);
84+
static cl::opt<bool> Debug("debug-afl-coverage", cl::desc("Debug prints"),
85+
cl::init(false), cl::NotHidden);
8686
static cl::opt<uint32_t> InstRatio(
8787
"inst_ratio", cl::desc("Instrumentation ratio in percentage"),
8888
cl::init(100), cl::NotHidden);

libafl_cc/src/coverage-accounting-pass.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@ enum AccountingGranularity {
148148
UKNOWN_GRAN
149149
};
150150

151-
static cl::opt<bool> Debug("debug", cl::desc("Debug prints"), cl::init(false),
152-
cl::NotHidden);
151+
static cl::opt<bool> Debug("debug-coverage-accounting",
152+
cl::desc("Debug prints"), cl::init(false),
153+
cl::NotHidden);
153154
static cl::opt<std::string> GranularityStr(
154155
"granularity", cl::desc("Granularity of accounting (BB, FUNC)"),
155156
cl::init(std::string("BB")), cl::NotHidden);

0 commit comments

Comments
 (0)