diff options
author | David Greene <greened@obbligato.org> | 2009-12-24 00:27:55 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-12-24 00:27:55 +0000 |
commit | 8bc072cda6adeca730991f9e0c88c93c7e67597c (patch) | |
tree | 3627e3174dbc9a981fa00eb78f15d879425b118f /llvm/lib/CodeGen/AsmPrinter/DIE.cpp | |
parent | 75a2efb06dedd1766c0e8589a0618d4652f6759e (diff) | |
download | bcm5719-llvm-8bc072cda6adeca730991f9e0c88c93c7e67597c.tar.gz bcm5719-llvm-8bc072cda6adeca730991f9e0c88c93c7e67597c.zip |
Change errs() to dbgs().
llvm-svn: 92094
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index 0e93b9849ce..b85e11acc0f 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -16,6 +16,7 @@ #include "llvm/CodeGen/AsmPrinter.h" #include "llvm/MC/MCAsmInfo.h" #include "llvm/Target/TargetData.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/Format.h" using namespace llvm; @@ -93,7 +94,7 @@ void DIEAbbrev::print(raw_ostream &O) { << '\n'; } } -void DIEAbbrev::dump() { print(errs()); } +void DIEAbbrev::dump() { print(dbgs()); } #endif //===----------------------------------------------------------------------===// @@ -164,14 +165,14 @@ void DIE::print(raw_ostream &O, unsigned IncIndent) { } void DIE::dump() { - print(errs()); + print(dbgs()); } #endif #ifndef NDEBUG void DIEValue::dump() { - print(errs()); + print(dbgs()); } #endif |