From 58631c71e8c419a689a28698239e96f36921be4d Mon Sep 17 00:00:00 2001 From: Manman Ren Date: Tue, 4 Feb 2014 23:49:02 +0000 Subject: [PATCH] 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 --- lib/IR/DiagnosticInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/IR/DiagnosticInfo.cpp b/lib/IR/DiagnosticInfo.cpp index bd758830a2b..86e8788eb09 100644 --- a/lib/IR/DiagnosticInfo.cpp +++ b/lib/IR/DiagnosticInfo.cpp @@ -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(); } -- 2.34.1