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 | 5a3b1b0f7ad64709802e8c7772d011aea4d4e78c (patch) | |
tree | bd4f3e1438601abbb463f58ede049024be9a6158 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | f031421afe3a843b673af84ad3a64a960eb9905a (diff) | |
download | bcm5719-llvm-5a3b1b0f7ad64709802e8c7772d011aea4d4e78c.tar.gz bcm5719-llvm-5a3b1b0f7ad64709802e8c7772d011aea4d4e78c.zip |
Fix comment to account for r70786.
llvm-svn: 70789
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 8de6ef54170..976621847f7 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/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; |