mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-25 19:29:53 +00:00
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92635 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
24c802bc8d
commit
593b6e4cb9
@ -9,6 +9,7 @@
|
||||
|
||||
#include "llvm/MC/MCInst.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
using namespace llvm;
|
||||
@ -31,8 +32,8 @@ void MCOperand::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
|
||||
}
|
||||
|
||||
void MCOperand::dump() const {
|
||||
print(errs(), 0);
|
||||
errs() << "\n";
|
||||
print(dbgs(), 0);
|
||||
dbgs() << "\n";
|
||||
}
|
||||
|
||||
void MCInst::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
|
||||
@ -45,6 +46,6 @@ void MCInst::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
|
||||
}
|
||||
|
||||
void MCInst::dump() const {
|
||||
print(errs(), 0);
|
||||
errs() << "\n";
|
||||
print(dbgs(), 0);
|
||||
dbgs() << "\n";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user