1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Change errs() to dbgs().

llvm-svn: 92632
This commit is contained in:
David Greene 2010-01-05 01:28:10 +00:00
parent 706266dce6
commit b0b06156ab

View File

@ -9,6 +9,7 @@
#include "llvm/MC/MCSymbol.h"
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
@ -106,5 +107,5 @@ void MCSymbol::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
}
void MCSymbol::dump() const {
print(errs(), 0);
print(dbgs(), 0);
}