summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-objdump
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/tools/llvm-objdump')
-rw-r--r--llvm/tools/llvm-objdump/llvm-objdump.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.cpp b/llvm/tools/llvm-objdump/llvm-objdump.cpp
index fcb419d05c8..22167f15e14 100644
--- a/llvm/tools/llvm-objdump/llvm-objdump.cpp
+++ b/llvm/tools/llvm-objdump/llvm-objdump.cpp
@@ -996,10 +996,8 @@ static void dumpELFData(uint64_t SectionAddr, uint64_t Index, uint64_t End,
int NumBytes = 0;
for (; Index < End; ++Index) {
- if (NumBytes == 0) {
+ if (NumBytes == 0)
outs() << format("%8" PRIx64 ":", SectionAddr + Index);
- outs() << "\t";
- }
Byte = Bytes.slice(Index)[0];
outs() << format(" %02x", Byte);
AsciiData[NumBytes] = isPrint(Byte) ? Byte : '.';
OpenPOWER on IntegriCloud