Add output of the SFINAE bit for Clang's diagnostics

llvm-svn: 73331
This commit is contained in:
Douglas Gregor 2009-06-14 07:24:49 +00:00
parent be42c11118
commit ec131d1fd7
1 changed files with 6 additions and 0 deletions

View File

@ -65,6 +65,12 @@ void ClangDiagsDefsEmitter::run(std::ostream &OS) {
} else {
OS << ", 0";
}
// SFINAE bit
if (R.getValueAsBit("SFINAE"))
OS << ", true";
else
OS << ", false";
OS << ")\n";
}
}