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 | e328bfe75393402d9bfb9fcefeb1122c6b474da8 (patch) | |
tree | 446116b4d5a1092fdd6de43e653869fe0642e4eb /lib | |
parent | dd6a1b7ca0f2f163da979dec510ba0841ff4437a (diff) | |
download | external_llvm-e328bfe75393402d9bfb9fcefeb1122c6b474da8.zip external_llvm-e328bfe75393402d9bfb9fcefeb1122c6b474da8.tar.gz external_llvm-e328bfe75393402d9bfb9fcefeb1122c6b474da8.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')
-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"); |