I have included the following code in llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
file under
let ParentPackage = CoreAlpha in{
...
def SimpleFunc: Checker<"SimpleFunc">,
HelpText<"Simple Function Checking">,
DescFile<"SimpleFunc.cpp">;
But when I am checking its presence after successful compilation by typing the following command, the checker is not visible.
clang -cc1 -analyzer-checker-help
I don't know what's the reason, hope someone could help me regarding this.