Fix wording of warning message about invalid debug info.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200806 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Manman Ren 2014-02-04 23:49:02 +00:00
parent 9b06b0fd55
commit 58631c71e8

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();
}