mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-23 17:28:54 +00:00
fix an ugly wart in the MCInstPrinter api where the
raw_ostream to print an instruction to had to be specified at MCInstPrinter construction time instead of being able to pick at each call to printInstruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100307 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -48,8 +48,8 @@ public:
|
||||
}
|
||||
|
||||
static bool PrintInsts(const MCDisassembler &DisAsm,
|
||||
MCInstPrinter &Printer, const ByteArrayTy &Bytes,
|
||||
SourceMgr &SM) {
|
||||
MCInstPrinter &Printer, const ByteArrayTy &Bytes,
|
||||
SourceMgr &SM) {
|
||||
// Wrap the vector in a MemoryObject.
|
||||
VectorMemoryObject memoryObject(Bytes);
|
||||
|
||||
@@ -62,7 +62,7 @@ static bool PrintInsts(const MCDisassembler &DisAsm,
|
||||
|
||||
if (DisAsm.getInstruction(Inst, Size, memoryObject, Index,
|
||||
/*REMOVE*/ nulls())) {
|
||||
Printer.printInst(&Inst);
|
||||
Printer.printInst(&Inst, outs());
|
||||
outs() << "\n";
|
||||
}
|
||||
else {
|
||||
@@ -92,7 +92,7 @@ int Disassembler::disassemble(const Target &T, const std::string &Triple,
|
||||
return -1;
|
||||
}
|
||||
|
||||
OwningPtr<MCInstPrinter> IP(T.createMCInstPrinter(0, *AsmInfo, outs()));
|
||||
OwningPtr<MCInstPrinter> IP(T.createMCInstPrinter(0, *AsmInfo));
|
||||
if (!IP) {
|
||||
errs() << "error: no instruction printer for target " << Triple << '\n';
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user