Rename option name (#1623)

* rename

* FMT
This commit is contained in:
Dongjia "toka" Zhang 2023-10-11 17:38:56 +02:00 committed by GitHub
parent 35e387773c
commit 67aa5b12c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -81,8 +81,8 @@ typedef uint32_t prev_loc_t;
using namespace llvm;
static cl::opt<bool> Debug("debug", cl::desc("Debug prints"), cl::init(false),
cl::NotHidden);
static cl::opt<bool> Debug("debug-afl-coverage", cl::desc("Debug prints"),
cl::init(false), cl::NotHidden);
static cl::opt<uint32_t> InstRatio(
"inst_ratio", cl::desc("Instrumentation ratio in percentage"),
cl::init(100), cl::NotHidden);

View File

@ -148,8 +148,9 @@ enum AccountingGranularity {
UKNOWN_GRAN
};
static cl::opt<bool> Debug("debug", cl::desc("Debug prints"), cl::init(false),
cl::NotHidden);
static cl::opt<bool> Debug("debug-coverage-accounting",
cl::desc("Debug prints"), cl::init(false),
cl::NotHidden);
static cl::opt<std::string> GranularityStr(
"granularity", cl::desc("Granularity of accounting (BB, FUNC)"),
cl::init(std::string("BB")), cl::NotHidden);