diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2008-06-08 15:45:52 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2008-06-08 15:45:52 +0000 |
commit | d4cbda6292b321c2e7dce7f039d92918fee99b3a (patch) | |
tree | bafb6964c04d55e8f69832155513962da2180514 /lib/CodeGen/CodeGenModule.h | |
parent | 3cd1a2dc07014aa6b675030823690cf06619a745 (diff) |
implement the alias attirbute (in both Sema and Codegen)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index de2995f6a8..d69b87f12f 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -154,6 +154,9 @@ private: void SetFunctionAttributes(const FunctionDecl *FD, llvm::Function *F, const llvm::FunctionType *FTy); + + void SetGlobalValueAttributes(const FunctionDecl *FD, + llvm::GlobalValue *GV); }; } // end namespace CodeGen |