summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/PostDominators.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-12-23 21:16:54 +0000
committerDavid Greene <greened@obbligato.org>2009-12-23 21:16:54 +0000
commit047ac4aa79fbf9969455ec5749138d647004e354 (patch)
tree2a81d9920f328f5e76b19051b350266d140f9a7f /llvm/lib/Analysis/PostDominators.cpp
parent40ee0cc813b369f699f0a5af566f7947bad017b2 (diff)
downloadbcm5719-llvm-047ac4aa79fbf9969455ec5749138d647004e354.tar.gz
bcm5719-llvm-047ac4aa79fbf9969455ec5749138d647004e354.zip
Convert debug messages to use dbgs(). Generally this means
s/errs/dbgs/g except for certain special cases. llvm-svn: 92048
Diffstat (limited to 'llvm/lib/Analysis/PostDominators.cpp')
-rw-r--r--llvm/lib/Analysis/PostDominators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp
index 69d6b47bbee..c38e0503f93 100644
--- a/llvm/lib/Analysis/PostDominators.cpp
+++ b/llvm/lib/Analysis/PostDominators.cpp
@@ -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;
}
OpenPOWER on IntegriCloud