diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-05-03 19:01:39 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-05-03 19:01:39 +0000 |
commit | 43907e87c776391d7d96da04b48e7bf06d8baafc (patch) | |
tree | 0a0718a975ad2219d55143d5774cec11d5ebc4eb /lib/CodeGen | |
parent | 5e222139610a9f8b2b5f4ddd112f10dec9ec1e97 (diff) |
Fix comment to account for r70786.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70789 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 8de6ef5417..976621847f 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -230,7 +230,7 @@ void CodeGenModule::EmitAnnotations() { 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; |