forked from OSchip/llvm-project
Add some words to this output to indicate what the numbers mean.
llvm-svn: 103264
This commit is contained in:
parent
b87e3fee0f
commit
50689f0bb9
|
@ -503,10 +503,10 @@ void DIType::print(raw_ostream &OS) const {
|
||||||
// TODO : Print context
|
// TODO : Print context
|
||||||
getCompileUnit().print(OS);
|
getCompileUnit().print(OS);
|
||||||
OS << " ["
|
OS << " ["
|
||||||
<< getLineNumber() << ", "
|
<< "line " << getLineNumber() << ", "
|
||||||
<< getSizeInBits() << ", "
|
<< getSizeInBits() << " bits, "
|
||||||
<< getAlignInBits() << ", "
|
<< getAlignInBits() << " bit alignment, "
|
||||||
<< getOffsetInBits()
|
<< getOffsetInBits() << " bit offset"
|
||||||
<< "] ";
|
<< "] ";
|
||||||
|
|
||||||
if (isPrivate())
|
if (isPrivate())
|
||||||
|
|
Loading…
Reference in New Issue