1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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 58423e8aad
commit 1b1e152fc0

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 {