Fix indentation.

llvm-svn: 92733
This commit is contained in:
Dan Gohman 2010-01-05 16:20:55 +00:00
parent cb99fe9839
commit 92fdb96474
1 changed files with 1 additions and 1 deletions

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()) {