[cfe-commits] r70789 - /cfe/trunk/lib/CodeGen/CodeGenModule.cpp
Eli Friedman
eli.friedman at gmail.com
Sun May 3 12:01:39 PDT 2009
Author: efriedma
Date: Sun May 3 14:01:39 2009
New Revision: 70789
URL: http://llvm.org/viewvc/llvm-project?rev=70789&view=rev
Log:
Fix comment to account for r70786.
Modified:
cfe/trunk/lib/CodeGen/CodeGenModule.cpp
Modified: cfe/trunk/lib/CodeGen/CodeGenModule.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenModule.cpp?rev=70789&r1=70788&r2=70789&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenModule.cpp (original)
+++ cfe/trunk/lib/CodeGen/CodeGenModule.cpp Sun May 3 14:01:39 2009
@@ -230,7 +230,7 @@
static CodeGenModule::GVALinkage
GetLinkageForFunction(const FunctionDecl *FD, const LangOptions &Features) {
- // "static" and attr(always_inline) functions get internal linkage.
+ // "static" functions get internal linkage.
if (FD->getStorageClass() == FunctionDecl::Static)
return CodeGenModule::GVA_Internal;
More information about the cfe-commits
mailing list