]> granicus.if.org Git - llvm/commitdiff
[llvm-objdump] Remove unnecessary indentation when dumping ELF data.
authorYuanfang Chen <yuanfang.chen@sony.com>
Wed, 19 Jun 2019 18:44:29 +0000 (18:44 +0000)
committerYuanfang Chen <yuanfang.chen@sony.com>
Wed, 19 Jun 2019 18:44:29 +0000 (18:44 +0000)
Reviewers: MaskRay, jhenderson, rupprecht

Subscribers: llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D63393

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@363858 91177308-0d34-0410-b5e6-96231b3b80d8

test/tools/llvm-objdump/X86/disassemble-code-data-mix.s
tools/llvm-objdump/llvm-objdump.cpp

index 8e8822aaa0f278d73945caeda5c172568191a6c6..08c61ca51bcaa9de0385a50e678ee2eaa4086a74 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: llvm-mc %s -filetype=obj -triple=x86_64-pc-linux | llvm-objdump -d - | FileCheck %s
+// RUN: llvm-mc %s -filetype=obj -triple=x86_64-pc-linux | llvm-objdump -d - | FileCheck --strict-whitespace --match-full-lines %s
         .text
         .globl  foo
         .type   foo, @function
@@ -14,6 +14,5 @@ foo:
 bar:
         .string "test string"
 
-// CHECK:        b:        74 65 73 74 20 73 74 72         test str
-// CHECK-NEXT:  13:        69 6e 67 00                     ing.
-
+// CHECK:       b: 74 65 73 74 20 73 74 72         test str
+// CHECK-NEXT:      13: 69 6e 67 00                     ing.
index fcb419d05c8bbf1526240c902a420d9042eda048..22167f15e14daba3acb6d0e8d59b2a2d1b591f31 100644 (file)
@@ -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 : '.';