aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DebugInfo.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-07 16:39:27 +0000
committerDan Gohman <gohman@apple.com>2010-05-07 16:39:27 +0000
commit9a7063e7eef06fd9fd95cfcf40ae048cec25c4e4 (patch)
tree6e9b7644145dd48441d3bf2147a32cef7037c400 /lib/Analysis/DebugInfo.cpp
parent199b66a535a131000b9f824ded2c59f4a5f8b683 (diff)
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
Diffstat (limited to 'lib/Analysis/DebugInfo.cpp')
-rw-r--r--lib/Analysis/DebugInfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp
index aa562cf364..f3289340ec 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())