aboutsummaryrefslogtreecommitdiff
path: root/llvm/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
commitac7f537d57a87bc88df0b2642b50dcea485bc9bc (patch)
tree424334175528a67402c22abeda39d9b7bba25227 /llvm/lib/MC/MCValue.cpp
parent74e8bd05cc0ec076fe0646b38b5f77686b8b2777 (diff)
downloadllvm-ac7f537d57a87bc88df0b2642b50dcea485bc9bc.zip
llvm-ac7f537d57a87bc88df0b2642b50dcea485bc9bc.tar.gz
llvm-ac7f537d57a87bc88df0b2642b50dcea485bc9bc.tar.bz2
Change errs() to dbgs().
llvm-svn: 92634
Diffstat (limited to 'llvm/lib/MC/MCValue.cpp')
-rw-r--r--llvm/lib/MC/MCValue.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCValue.cpp b/llvm/lib/MC/MCValue.cpp
index 69bd10c..c1222ec 100644
--- a/llvm/lib/MC/MCValue.cpp
+++ b/llvm/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);
}