forked from OSchip/llvm-project
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:
parent
40ee0cc813
commit
047ac4aa79
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue