[llvm-commits] [llvm] r92620 - /llvm/trunk/lib/Transforms/Scalar/TailDuplication.cpp
David Greene
greened at obbligato.org
Mon Jan 4 17:27:33 PST 2010
Author: greened
Date: Mon Jan 4 19:27:33 2010
New Revision: 92620
URL: http://llvm.org/viewvc/llvm-project?rev=92620&view=rev
Log:
Change errs() to dbgs().
Modified:
llvm/trunk/lib/Transforms/Scalar/TailDuplication.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/TailDuplication.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/TailDuplication.cpp?rev=92620&r1=92619&r2=92620&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/TailDuplication.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/TailDuplication.cpp Mon Jan 4 19:27:33 2010
@@ -243,13 +243,13 @@
BasicBlock *DestBlock = Branch->getSuccessor(0);
assert(SourceBlock != DestBlock && "Our predicate is broken!");
- DEBUG(errs() << "TailDuplication[" << SourceBlock->getParent()->getName()
+ DEBUG(dbgs() << "TailDuplication[" << SourceBlock->getParent()->getName()
<< "]: Eliminating branch: " << *Branch);
// See if we can avoid duplicating code by moving it up to a dominator of both
// blocks.
if (BasicBlock *DomBlock = FindObviousSharedDomOf(SourceBlock, DestBlock)) {
- DEBUG(errs() << "Found shared dominator: " << DomBlock->getName() << "\n");
+ DEBUG(dbgs() << "Found shared dominator: " << DomBlock->getName() << "\n");
// If there are non-phi instructions in DestBlock that have no operands
// defined in DestBlock, and if the instruction has no side effects, we can
@@ -272,7 +272,7 @@
// Remove from DestBlock, move right before the term in DomBlock.
DestBlock->getInstList().remove(I);
DomBlock->getInstList().insert(DomBlock->getTerminator(), I);
- DEBUG(errs() << "Hoisted: " << *I);
+ DEBUG(dbgs() << "Hoisted: " << *I);
}
}
}
More information about the llvm-commits
mailing list