Skip to content

Commit

Permalink
[Analysis] Fix typo in comment. NFC
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289171 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
topperc committed Dec 9, 2016
1 parent a3def13 commit c341071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Analysis/InlineCost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@ InlineCost llvm::getInlineCost(

// Don't inline functions which can be interposed at link-time. Don't inline
// functions marked noinline or call sites marked noinline.
// Note: inlining non-exact non-interposable fucntions is fine, since we know
// Note: inlining non-exact non-interposable functions is fine, since we know
// we have *a* correct implementation of the source level function.
if (Callee->isInterposable() || Callee->hasFnAttribute(Attribute::NoInline) ||
CS.isNoInline())
Expand Down

0 comments on commit c341071

Please sign in to comment.