diff options
author | David Greene <greened@obbligato.org> | 2009-12-23 21:16:54 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-12-23 21:16:54 +0000 |
commit | 047ac4aa79fbf9969455ec5749138d647004e354 (patch) | |
tree | 2a81d9920f328f5e76b19051b350266d140f9a7f /llvm/lib | |
parent | 40ee0cc813b369f699f0a5af566f7947bad017b2 (diff) | |
download | bcm5719-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')
-rw-r--r-- | llvm/lib/Analysis/PostDominators.cpp | 2 |
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; } |