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 | df9027b0b87302f42eaba5345e16ceae00864881 (patch) | |
tree | 9c5c6e2f4e3e7ef4389fe7cb9d94e0c2492cef53 /lib/Analysis/PostDominators.cpp | |
parent | 2a0f3ccc9c10186309d5d6a0c4cebe8b477f352a (diff) | |
download | external_llvm-df9027b0b87302f42eaba5345e16ceae00864881.zip external_llvm-df9027b0b87302f42eaba5345e16ceae00864881.tar.gz external_llvm-df9027b0b87302f42eaba5345e16ceae00864881.tar.bz2 |
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
Diffstat (limited to 'lib/Analysis/PostDominators.cpp')
-rw-r--r-- | lib/Analysis/PostDominators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp index 69d6b47..c38e050 100644 --- a/lib/Analysis/PostDominators.cpp +++ b/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; } |