Remove more tabs.
authorBill Wendling <isanbard@gmail.com>
Tue, 22 Jul 2008 09:08:05 +0000 (09:08 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 22 Jul 2008 09:08:05 +0000 (09:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53905 91177308-0d34-0410-b5e6-96231b3b80d8

tools/lto-bugpoint/LTOBugPoint.cpp

index a855a0bcda6f8c999d218c585267987feeacb041..9bcd7ad79672765870f4b072a5212ad65cfea5c9 100644 (file)
@@ -52,7 +52,7 @@ LTOBugPoint::LTOBugPoint(std::istream &args, std::istream &ins) {
 /// 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 @@ LTOBugPoint::findTroubleMakers(SmallVector<std::string, 4> &TroubleMakers,
     else if (InputFile.isBitcodeFile()) {
       bitcodeFileSeen = true;
       if (getNativeObjectFile(FileName) == false)
-       return false;
+        return false;
     }
     else
       NativeInputFiles.push_back(FileName);
@@ -133,7 +133,7 @@ bool LTOBugPoint::assembleBitcode(llvm::Module *M, const char *AsmFileName) {
   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 @@ bool LTOBugPoint::assembleBitcode(llvm::Module *M, const char *AsmFileName) {
 
   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();