aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCValue.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-05 01:28:17 +0000
committerDavid Greene <greened@obbligato.org>2010-01-05 01:28:17 +0000
commit24c802bc8d6b3e248b4bc4e5951c88127dd799d6 (patch)
tree9cbe208d92847708f1263073782123038e1b1db3 /lib/MC/MCValue.cpp
parent3a078b520808d9c09b330617bd98c436ad8caff1 (diff)
downloadexternal_llvm-24c802bc8d6b3e248b4bc4e5951c88127dd799d6.zip
external_llvm-24c802bc8d6b3e248b4bc4e5951c88127dd799d6.tar.gz
external_llvm-24c802bc8d6b3e248b4bc4e5951c88127dd799d6.tar.bz2
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.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/MC/MCValue.cpp b/lib/MC/MCValue.cpp
index 69bd10c..c1222ec 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);
}