Fix wording of warning message about invalid debug info.
authorManman Ren <manman.ren@gmail.com>
Tue, 4 Feb 2014 23:49:02 +0000 (23:49 +0000)
committerManman Ren <manman.ren@gmail.com>
Tue, 4 Feb 2014 23:49:02 +0000 (23:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200806 91177308-0d34-0410-b5e6-96231b3b80d8

lib/IR/DiagnosticInfo.cpp

index bd758830a2b14962a183f2c1048b05303ffb9706..86e8788eb091df8926d485c525e971d9339863c3 100644 (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();
 }