Convert debug messages to use dbgs(). Generally this means

s/errs/dbgs/g except for certain special cases.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Greene 2009-12-23 21:16:54 +00:00
parent 2a0f3ccc9c
commit df9027b0b8

View File

@ -33,7 +33,7 @@ F("postdomtree", "Post-Dominator Tree Construction", true, true);
bool PostDominatorTree::runOnFunction(Function &F) {
DT->recalculate(F);
DEBUG(DT->print(errs()));
DEBUG(DT->print(dbgs()));
return false;
}