[Analysis] Fix typo in comment. NFC

llvm-svn: 289171
This commit is contained in:
Craig Topper 2016-12-09 02:18:04 +00:00
parent 7a0a076e40
commit 107b187d2a
1 changed files with 1 additions and 1 deletions

View File

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