Remove tabs.
authorBill Wendling <isanbard@gmail.com>
Thu, 19 Jul 2012 00:17:40 +0000 (00:17 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 19 Jul 2012 00:17:40 +0000 (00:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160480 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-objdump/MachODump.cpp

index ed4f2b64329f8f40460135ade3c5be8a28160b13..1feea421f23a1055bc993b00c162bd7260cae5e3 100644 (file)
@@ -508,21 +508,19 @@ void llvm::DisassembleInputMachO(StringRef Filename) {
       Sections[SectIdx].getSize(SectSize);
       uint64_t InstSize;
       for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
-       MCInst Inst;
-
-       if (DisAsm->getInstruction(Inst, InstSize, memoryObject, Index,
-                                  DebugOut, nulls())) {
-         outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
-
-         DumpBytes(StringRef(Bytes.data() + Index, InstSize));
-         IP->printInst(&Inst, outs(), "");
-
-         outs() << "\n";
-       } else {
-         errs() << "llvm-objdump: warning: invalid instruction encoding\n";
-         if (InstSize == 0)
-           InstSize = 1; // skip illegible bytes
-       }
+        MCInst Inst;
+
+        if (DisAsm->getInstruction(Inst, InstSize, memoryObject, Index,
+                                   DebugOut, nulls())) {
+          outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
+          DumpBytes(StringRef(Bytes.data() + Index, InstSize));
+          IP->printInst(&Inst, outs(), "");
+          outs() << "\n";
+        } else {
+          errs() << "llvm-objdump: warning: invalid instruction encoding\n";
+          if (InstSize == 0)
+            InstSize = 1; // skip illegible bytes
+        }
       }
     }