mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-05 14:34:55 +00:00
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92094 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5393b25234
commit
0c8b6e6bc5
@ -16,6 +16,7 @@
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Format.h"
|
||||
using namespace llvm;
|
||||
@ -93,7 +94,7 @@ void DIEAbbrev::print(raw_ostream &O) {
|
||||
<< '\n';
|
||||
}
|
||||
}
|
||||
void DIEAbbrev::dump() { print(errs()); }
|
||||
void DIEAbbrev::dump() { print(dbgs()); }
|
||||
#endif
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -164,14 +165,14 @@ void DIE::print(raw_ostream &O, unsigned IncIndent) {
|
||||
}
|
||||
|
||||
void DIE::dump() {
|
||||
print(errs());
|
||||
print(dbgs());
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef NDEBUG
|
||||
void DIEValue::dump() {
|
||||
print(errs());
|
||||
print(dbgs());
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user