diff options
author | David Majnemer <david.majnemer@gmail.com> | 2014-02-25 10:51:14 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2014-02-25 10:51:14 +0000 |
commit | 19d7d5463f2671688f2f37b7e394d0b4c783dd97 (patch) | |
tree | 31b086fd3cf826083b58a283942a2a9811377729 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 01be296dbb1c4835f84be654fc8467b145128104 (diff) | |
download | llvm-19d7d5463f2671688f2f37b7e394d0b4c783dd97.zip llvm-19d7d5463f2671688f2f37b7e394d0b4c783dd97.tar.gz llvm-19d7d5463f2671688f2f37b7e394d0b4c783dd97.tar.bz2 |
IRGen: Remove a stale comment
This comment survived the transition from ForceInline to InlineAlways,
fix it.
llvm-svn: 202133
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index e81b1bc..ec04fa2 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -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(), |