1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

For ARM Disassembler, start a newline to dump the opcode and friends for an instruction.

Change inspired by llvm-bug 9530 submitted by Jyun-Yan You.

llvm-svn: 128122
This commit is contained in:
Johnny Chen 2011-03-22 23:49:46 +00:00
parent b9309ecef1
commit b4284e3f90

View File

@ -378,7 +378,7 @@ bool ARMDisassembler::getInstruction(MCInst &MI,
Size = 4; Size = 4;
DEBUG({ DEBUG({
errs() << "Opcode=" << Opcode << " Name=" << ARMUtils::OpcodeName(Opcode) errs() << "\nOpcode=" << Opcode << " Name=" <<ARMUtils::OpcodeName(Opcode)
<< " Format=" << stringForARMFormat(Format) << '(' << (int)Format << " Format=" << stringForARMFormat(Format) << '(' << (int)Format
<< ")\n"; << ")\n";
showBitVector(errs(), insn); showBitVector(errs(), insn);