From 4e97401e1fe39f5b847ab778880e0d272977dd8b Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 22 Jul 2008 00:28:47 +0000 Subject: [PATCH] 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 --- lib/CodeGen/DwarfWriter.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp index 124f4ea55bb..a42ba461c14 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()) << " ";