Remove more tabs.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53905 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/lto-bugpoint/LTOBugPoint.cpp b/tools/lto-bugpoint/LTOBugPoint.cpp
index a855a0b..9bcd7ad 100644
--- a/tools/lto-bugpoint/LTOBugPoint.cpp
+++ b/tools/lto-bugpoint/LTOBugPoint.cpp
@@ -52,7 +52,7 @@
 /// identified by the script.
 bool
 LTOBugPoint::findTroubleMakers(SmallVector<std::string, 4> &TroubleMakers,
-			       std::string &Script) {
+                               std::string &Script) {
 
   // First, build native object files set.
   bool bitcodeFileSeen = false;
@@ -68,7 +68,7 @@
     else if (InputFile.isBitcodeFile()) {
       bitcodeFileSeen = true;
       if (getNativeObjectFile(FileName) == false)
-	return false;
+        return false;
     }
     else
       NativeInputFiles.push_back(FileName);
@@ -133,7 +133,7 @@
   std::ofstream *Out = new std::ofstream(AsmFileName, std::ios::out);
 
   switch (Target->addPassesToEmitFile(*CGPasses, *Out,
-				       TargetMachine::AssemblyFile, true)) {
+                                      TargetMachine::AssemblyFile, true)) {
   case FileModel::MachOFile:
     mce = AddMachOWriter(*CGPasses, *Out, *Target);
     break;
@@ -155,7 +155,7 @@
 
   CGPasses->doInitialization();
   for (Module::iterator
-	 it = M->begin(), e = M->end(); it != e; ++it)
+         it = M->begin(), e = M->end(); it != e; ++it)
     if (!it->isDeclaration())
       CGPasses->run(*it);
   CGPasses->doFinalization();