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

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 622f9b3511
commit 28685e02db

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";
}
}