Add some words to this output to indicate what the numbers mean.
authorDan Gohman <gohman@apple.com>
Fri, 7 May 2010 16:39:27 +0000 (16:39 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 7 May 2010 16:39:27 +0000 (16:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103264 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DebugInfo.cpp

index aa562cf364acd8ebc2d02d747342f13a5c7cf654..f3289340ec9b8cb28e4787d884faf769bf8ab2d8 100644 (file)
@@ -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())