From b6f08eb1e6fb0fca568751b0ba5a3599a1854886 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 22 Jul 2008 09:08:05 +0000 Subject: [PATCH] Remove more tabs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53905 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lto-bugpoint/LTOBugPoint.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/lto-bugpoint/LTOBugPoint.cpp b/tools/lto-bugpoint/LTOBugPoint.cpp index a855a0bcda6..9bcd7ad7967 100644 --- a/tools/lto-bugpoint/LTOBugPoint.cpp +++ b/tools/lto-bugpoint/LTOBugPoint.cpp @@ -52,7 +52,7 @@ LTOBugPoint::LTOBugPoint(std::istream &args, std::istream &ins) { /// identified by the script. bool LTOBugPoint::findTroubleMakers(SmallVector &TroubleMakers, - std::string &Script) { + std::string &Script) { // First, build native object files set. bool bitcodeFileSeen = false; @@ -68,7 +68,7 @@ LTOBugPoint::findTroubleMakers(SmallVector &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(); -- 2.34.1