commit | b7a9f2b5042589db89e521a4f86fd2fd70845e0f | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Tue Jan 05 16:20:55 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Tue Jan 05 16:20:55 2010 +0000 |
tree | b385b039f9e5bc197f953934ea3d958178658c41 | |
parent | 90fe0bd68cdbeb980c08628c4992dffad0dc728f [diff] |
Fix indentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92733 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/IPO/PartialInlining.cpp b/lib/Transforms/IPO/PartialInlining.cpp index b955b97..f40902f 100644 --- a/lib/Transforms/IPO/PartialInlining.cpp +++ b/lib/Transforms/IPO/PartialInlining.cpp
@@ -145,7 +145,7 @@ 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()) {