mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-02 15:51:54 +00:00
[llvm-objdump] Don't print trailing space in dumpBytes
In disassembly output, dumpBytes prints a space, followed by a tab printed by printInstr. Remove the extra space. llvm-svn: 358045
This commit is contained in:
parent
83b251d2f9
commit
9be8763299
@ -21,10 +21,14 @@ using namespace llvm;
|
||||
|
||||
void llvm::dumpBytes(ArrayRef<uint8_t> bytes, raw_ostream &OS) {
|
||||
static const char hex_rep[] = "0123456789abcdef";
|
||||
bool First = true;
|
||||
for (char i: bytes) {
|
||||
if (First)
|
||||
First = false;
|
||||
else
|
||||
OS << ' ';
|
||||
OS << hex_rep[(i & 0xF0) >> 4];
|
||||
OS << hex_rep[i & 0xF];
|
||||
OS << ' ';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -614,7 +614,7 @@ public:
|
||||
if (MI)
|
||||
IP.printInst(MI, OS, "", STI);
|
||||
else
|
||||
OS << " <unknown>";
|
||||
OS << "\t<unknown>";
|
||||
}
|
||||
};
|
||||
PrettyPrinter PrettyPrinterInst;
|
||||
@ -629,7 +629,7 @@ public:
|
||||
if (!NoShowRawInsn) {
|
||||
OS << "\t";
|
||||
dumpBytes(Bytes.slice(0, 4), OS);
|
||||
OS << format("%08" PRIx32, opcode);
|
||||
OS << format("\t%08" PRIx32, opcode);
|
||||
}
|
||||
}
|
||||
void printInst(MCInstPrinter &IP, const MCInst *MI, ArrayRef<uint8_t> Bytes,
|
||||
@ -768,7 +768,7 @@ public:
|
||||
if (MI)
|
||||
IP.printInst(MI, OS, "", STI);
|
||||
else
|
||||
OS << " <unknown>";
|
||||
OS << "\t<unknown>";
|
||||
}
|
||||
};
|
||||
BPFPrettyPrinter BPFPrettyPrinterInst;
|
||||
|
Loading…
x
Reference in New Issue
Block a user