diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:28:07 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:28:07 +0000 |
commit | 5d2bcb18f6cc22cda5849a10cd198c8842f163ea (patch) | |
tree | 6407ec865fcab5f15dbff891e25eaaeef0dd7751 | |
parent | 3215b0ee8248ca1e4bc2c7e2f5fd3ce120c3ee45 (diff) |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92630 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/MC/MCExpr.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/MC/MCExpr.cpp b/lib/MC/MCExpr.cpp index a5a2256f4c..a19ec19bca 100644 --- a/lib/MC/MCExpr.cpp +++ b/lib/MC/MCExpr.cpp @@ -11,6 +11,7 @@ #include "llvm/MC/MCContext.h" #include "llvm/MC/MCSymbol.h" #include "llvm/MC/MCValue.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; @@ -108,8 +109,8 @@ void MCExpr::print(raw_ostream &OS, const MCAsmInfo *MAI) const { } void MCExpr::dump() const { - print(errs(), 0); - errs() << '\n'; + print(dbgs(), 0); + dbgs() << '\n'; } /* *** */ |