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 | d07cee2e5c0ef86b75237c4a0e10344c924bc883 (patch) | |
| tree | 7fa0aa3f5d1143c6cfebe602c94831483a3caf4a /llvm/lib/CodeGen/DwarfWriter.cpp | |
| parent | 327acd7a6cff9c949b9744179f35e2f15760165d (diff) | |
| download | bcm5719-llvm-d07cee2e5c0ef86b75237c4a0e10344c924bc883.tar.gz bcm5719-llvm-d07cee2e5c0ef86b75237c4a0e10344c924bc883.zip | |
Trivial check-in to test buildbot. No functionality change.
llvm-svn: 53889
Diffstat (limited to 'llvm/lib/CodeGen/DwarfWriter.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/DwarfWriter.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp index 124f4ea55bb..a42ba461c14 100644 --- a/llvm/lib/CodeGen/DwarfWriter.cpp +++ b/llvm/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()) << " "; |

