Remove more tabs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53905 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-07-22 09:08:05 +00:00
parent 829487e7c9
commit b6f08eb1e6

View 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();