Fix indentation.
authorDan Gohman <gohman@apple.com>
Tue, 5 Jan 2010 16:20:55 +0000 (16:20 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 5 Jan 2010 16:20:55 +0000 (16:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92733 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/PartialInlining.cpp

index b955b97435436759e0ec750de3bb140f8eada57e..f40902ffa2fd58a1e626706f3defb4bacd70830c 100644 (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()) {