Change errs() to dbgs().

llvm-svn: 92634
This commit is contained in:
David Greene 2010-01-05 01:28:17 +00:00
parent 74e8bd05cc
commit ac7f537d57
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}