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:
parent
622f9b3511
commit
28685e02db
@ -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
Block a user