diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:28:17 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:28:17 +0000 |
commit | 24c802bc8d6b3e248b4bc4e5951c88127dd799d6 (patch) | |
tree | 9cbe208d92847708f1263073782123038e1b1db3 /lib/MC/MCValue.cpp | |
parent | 3a078b520808d9c09b330617bd98c436ad8caff1 (diff) |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCValue.cpp')
-rw-r--r-- | lib/MC/MCValue.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/MC/MCValue.cpp b/lib/MC/MCValue.cpp index 69bd10c8e6..c1222ec887 100644 --- a/lib/MC/MCValue.cpp +++ b/lib/MC/MCValue.cpp @@ -8,6 +8,7 @@ //===----------------------------------------------------------------------===// #include "llvm/MC/MCValue.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; @@ -30,5 +31,5 @@ void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const { } void MCValue::dump() const { - print(errs(), 0); + print(dbgs(), 0); } |