IRGen: Remove a stale comment

This comment survived the transition from ForceInline to InlineAlways,
fix it.

llvm-svn: 202133
This commit is contained in:
David Majnemer 2014-02-25 10:51:14 +00:00
parent 01be296dbb
commit 19d7d5463f
1 changed files with 1 additions and 1 deletions

View File

@ -518,7 +518,7 @@ void CodeGenFunction::StartFunction(GlobalDecl GD,
// Pass inline keyword to optimizer if it appears explicitly on any
// declaration. Also, in the case of -fno-inline attach NoInline
// attribute to all function that are not marked AlwaysInline or ForceInline.
// attribute to all function that are not marked AlwaysInline.
if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
if (!CGM.getCodeGenOpts().NoInline) {
for (FunctionDecl::redecl_iterator RI = FD->redecls_begin(),