[llvm-commits] [llvm] r92502 - /llvm/trunk/lib/CodeGen/ELFWriter.cpp
David Greene
greened at obbligato.org
Mon Jan 4 11:57:26 PST 2010
Author: greened
Date: Mon Jan 4 13:57:26 2010
New Revision: 92502
URL: http://llvm.org/viewvc/llvm-project?rev=92502&view=rev
Log:
Change errs() to dbgs().
Modified:
llvm/trunk/lib/CodeGen/ELFWriter.cpp
Modified: llvm/trunk/lib/CodeGen/ELFWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/ELFWriter.cpp?rev=92502&r1=92501&r2=92502&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/ELFWriter.cpp (original)
+++ llvm/trunk/lib/CodeGen/ELFWriter.cpp Mon Jan 4 13:57:26 2010
@@ -1076,7 +1076,7 @@
// 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");
More information about the llvm-commits
mailing list