Fix indentation.

llvm-svn: 92733
This commit is contained in:
Dan Gohman 2010-01-05 16:20:55 +00:00
parent 41cc1e1fc4
commit 7924aacfe4

View File

@ -145,7 +145,7 @@ bool PartialInliner::runOnModule(Module& M) {
worklist.reserve(M.size());
for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI)
if (!FI->use_empty() && !FI->isDeclaration())
worklist.push_back(&*FI);
worklist.push_back(&*FI);
bool changed = false;
while (!worklist.empty()) {