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

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

llvm-svn: 92048
This commit is contained in:
David Greene 2009-12-23 21:16:54 +00:00
parent 40ee0cc813
commit 047ac4aa79
1 changed files with 1 additions and 1 deletions

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;
}