Home
last modified time | relevance | path

Searched refs:CountBy (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkCounter.cpp76 static cl::opt<CountBy> CountByOpt(
79 clEnumValN(CountBy::REMARK, "remark-name",
82 clEnumValN(CountBy::ARGUMENT, "arg",
85 cl::init(CountBy::REMARK), cl::sub(CountSub));
285 if (CountByOpt == CountBy::REMARK) { in collectRemarks()
289 } else if (CountByOpt == CountBy::ARGUMENT) { in collectRemarks()
H A DRemarkCounter.h23 enum class CountBy { REMARK, ARGUMENT }; enum