From: Dan Gohman Date: Fri, 7 May 2010 16:39:27 +0000 (+0000) Subject: Add some words to this output to indicate what the numbers mean. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9a7063e7eef06fd9fd95cfcf40ae048cec25c4e4;p=oota-llvm.git Add some words to this output to indicate what the numbers mean. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103264 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index aa562cf364a..f3289340ec9 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -503,10 +503,10 @@ void DIType::print(raw_ostream &OS) const { // TODO : Print context getCompileUnit().print(OS); OS << " [" - << getLineNumber() << ", " - << getSizeInBits() << ", " - << getAlignInBits() << ", " - << getOffsetInBits() + << "line " << getLineNumber() << ", " + << getSizeInBits() << " bits, " + << getAlignInBits() << " bit alignment, " + << getOffsetInBits() << " bit offset" << "] "; if (isPrivate())