From 50689f0bb9fb7f4ba3ca30c52a2de16889360726 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 7 May 2010 16:39:27 +0000 Subject: [PATCH] Add some words to this output to indicate what the numbers mean. llvm-svn: 103264 --- llvm/lib/Analysis/DebugInfo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/lib/Analysis/DebugInfo.cpp b/llvm/lib/Analysis/DebugInfo.cpp index aa562cf364ac..f3289340ec9b 100644 --- a/llvm/lib/Analysis/DebugInfo.cpp +++ b/llvm/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())