diff --git a/libafl_cc/src/afl-coverage-pass.cc b/libafl_cc/src/afl-coverage-pass.cc index a8d0328ab8..cee0a79533 100644 --- a/libafl_cc/src/afl-coverage-pass.cc +++ b/libafl_cc/src/afl-coverage-pass.cc @@ -81,8 +81,8 @@ typedef uint32_t prev_loc_t; using namespace llvm; -static cl::opt Debug("debug", cl::desc("Debug prints"), cl::init(false), - cl::NotHidden); +static cl::opt Debug("debug-afl-coverage", cl::desc("Debug prints"), + cl::init(false), cl::NotHidden); static cl::opt InstRatio( "inst_ratio", cl::desc("Instrumentation ratio in percentage"), cl::init(100), cl::NotHidden); diff --git a/libafl_cc/src/coverage-accounting-pass.cc b/libafl_cc/src/coverage-accounting-pass.cc index 2deb225c54..accef8f16f 100644 --- a/libafl_cc/src/coverage-accounting-pass.cc +++ b/libafl_cc/src/coverage-accounting-pass.cc @@ -148,8 +148,9 @@ enum AccountingGranularity { UKNOWN_GRAN }; -static cl::opt Debug("debug", cl::desc("Debug prints"), cl::init(false), - cl::NotHidden); +static cl::opt Debug("debug-coverage-accounting", + cl::desc("Debug prints"), cl::init(false), + cl::NotHidden); static cl::opt GranularityStr( "granularity", cl::desc("Granularity of accounting (BB, FUNC)"), cl::init(std::string("BB")), cl::NotHidden);