In utils/TableGen/ClangSACheckersEmitter.cpp, set the 'Hidden' bit for checkers.

llvm-svn: 126436
This commit is contained in:
Argyrios Kyrtzidis 2011-02-24 21:33:49 +00:00
parent 74405b02f9
commit 28785b6be3
1 changed files with 1 additions and 0 deletions

View File

@ -148,6 +148,7 @@ void ClangSACheckersEmitter::run(raw_ostream &OS) {
// Create a pseudo-group to hold this checker.
std::string fullName = getCheckerFullName(R);
GroupInfo &info = groupInfoByName[fullName];
info.Hidden = R->getValueAsBit("Hidden");
recordGroupMap[R] = &info;
info.Checkers.push_back(R);
} else {