diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-07-22 00:28:47 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-07-22 00:28:47 +0000 |
commit | 4e97401e1fe39f5b847ab778880e0d272977dd8b (patch) | |
tree | 69a74a66bc1578d0ad51f2356c76ebcfef6d3f2b /lib/CodeGen/DwarfWriter.cpp | |
parent | e089160d1065d83986fd97fae7f0af08c03e7d47 (diff) |
Trivial check-in to test buildbot. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53889 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DwarfWriter.cpp')
-rw-r--r-- | lib/CodeGen/DwarfWriter.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp index 124f4ea55b..a42ba461c1 100644 --- a/lib/CodeGen/DwarfWriter.cpp +++ b/lib/CodeGen/DwarfWriter.cpp @@ -3847,11 +3847,12 @@ void DIE::print(std::ostream &O, unsigned IncIndent) { IndentCount += 2; for (unsigned i = 0, N = Data.size(); i < N; ++i) { O << Indent; - if (!isBlock) { + + if (!isBlock) O << AttributeString(Data[i].getAttribute()); - } else { + else O << "Blk[" << i << "]"; - } + O << " " << FormEncodingString(Data[i].getForm()) << " "; |