r202133 - IRGen: Remove a stale comment

David Majnemer david.majnemer at gmail.com
Tue Feb 25 02:51:15 PST 2014


Author: majnemer
Date: Tue Feb 25 04:51:14 2014
New Revision: 202133

URL: http://llvm.org/viewvc/llvm-project?rev=202133&view=rev
Log:
IRGen: Remove a stale comment

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

Modified:
    cfe/trunk/lib/CodeGen/CodeGenFunction.cpp

Modified: cfe/trunk/lib/CodeGen/CodeGenFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenFunction.cpp?rev=202133&r1=202132&r2=202133&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenFunction.cpp (original)
+++ cfe/trunk/lib/CodeGen/CodeGenFunction.cpp Tue Feb 25 04:51:14 2014
@@ -518,7 +518,7 @@ void CodeGenFunction::StartFunction(Glob
 
   // 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(),





More information about the cfe-commits mailing list