forked from OSchip/llvm-project
Add output of the SFINAE bit for Clang's diagnostics
llvm-svn: 73331
This commit is contained in:
parent
be42c11118
commit
ec131d1fd7
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue