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

Fix wording of warning message about invalid debug info.

llvm-svn: 200806
This commit is contained in:
Manman Ren 2014-02-04 23:49:02 +00:00
parent 14250cad7d
commit 1fbb9d3674

View File

@ -53,6 +53,6 @@ void DiagnosticInfoStackSize::print(DiagnosticPrinter &DP) const {
}
void DiagnosticInfoDebugMetadataVersion::print(DiagnosticPrinter &DP) const {
DP << "invalid debug metadata version (" << getMetadataVersion() << ") in "
<< getModule();
DP << "ignoring debug info with an invalid version (" << getMetadataVersion()
<< ") in " << getModule();
}