diff options
author | David Greene <greened@obbligato.org> | 2010-01-04 19:57:26 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-04 19:57:26 +0000 |
commit | 6e120a1c7049bb424b37626db61b71bedc6e62a0 (patch) | |
tree | 446116b4d5a1092fdd6de43e653869fe0642e4eb /lib/CodeGen/ELFWriter.cpp | |
parent | 9f5c510df1a79a981499b112090bea2bd8a65c01 (diff) | |
download | external_llvm-6e120a1c7049bb424b37626db61b71bedc6e62a0.zip external_llvm-6e120a1c7049bb424b37626db61b71bedc6e62a0.tar.gz external_llvm-6e120a1c7049bb424b37626db61b71bedc6e62a0.tar.bz2 |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92502 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFWriter.cpp')
-rw-r--r-- | lib/CodeGen/ELFWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp index 3e1ee11..5e5f589 100644 --- a/lib/CodeGen/ELFWriter.cpp +++ b/lib/CodeGen/ELFWriter.cpp @@ -1076,7 +1076,7 @@ void ELFWriter::OutputSectionsAndSectionTable() { // Emit all of sections to the file and build the section header table. for (ELFSectionIter I=SectionList.begin(), E=SectionList.end(); I != E; ++I) { ELFSection &S = *(*I); - DEBUG(errs() << "SectionIdx: " << S.SectionIdx << ", Name: " << S.getName() + DEBUG(dbgs() << "SectionIdx: " << S.SectionIdx << ", Name: " << S.getName() << ", Size: " << S.Size << ", Offset: " << S.Offset << ", SectionData Size: " << S.size() << "\n"); |