Skip to content

Commit

Permalink
Fix indentation.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151420 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Chad Rosier committed Feb 25, 2012
1 parent 3c3cdcc commit ff16eb6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Transforms/IPO/InlineAlways.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ bool AlwaysInliner::doInitialization(CallGraph &CG) {

Module &M = CG.getModule();

for (Module::iterator I = M.begin(), E = M.end();
I != E; ++I)
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
if (!I->isDeclaration() && !I->hasFnAttr(Attribute::AlwaysInline))
NeverInline.insert(I);

Expand Down

0 comments on commit ff16eb6

Please sign in to comment.