mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92544 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dbdbbd9a67
commit
dc55481841
@ -26,6 +26,7 @@
|
||||
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
@ -299,7 +300,7 @@ MachineFunction::extractStoreMemRefs(MachineInstr::mmo_iterator Begin,
|
||||
}
|
||||
|
||||
void MachineFunction::dump() const {
|
||||
print(errs());
|
||||
print(dbgs());
|
||||
}
|
||||
|
||||
void MachineFunction::print(raw_ostream &OS) const {
|
||||
@ -519,7 +520,7 @@ void MachineFrameInfo::print(const MachineFunction &MF, raw_ostream &OS) const{
|
||||
}
|
||||
|
||||
void MachineFrameInfo::dump(const MachineFunction &MF) const {
|
||||
print(MF, errs());
|
||||
print(MF, dbgs());
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -579,7 +580,7 @@ void MachineJumpTableInfo::print(raw_ostream &OS) const {
|
||||
OS << '\n';
|
||||
}
|
||||
|
||||
void MachineJumpTableInfo::dump() const { print(errs()); }
|
||||
void MachineJumpTableInfo::dump() const { print(dbgs()); }
|
||||
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -702,4 +703,4 @@ void MachineConstantPool::print(raw_ostream &OS) const {
|
||||
}
|
||||
}
|
||||
|
||||
void MachineConstantPool::dump() const { print(errs()); }
|
||||
void MachineConstantPool::dump() const { print(dbgs()); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user