diff options
author | Anders Carlsson <andersca@mac.com> | 2009-10-03 19:43:08 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-10-03 19:43:08 +0000 |
commit | 375c31c4673f83f925de221752cf801c2fbbb246 (patch) | |
tree | e08b9d77a447540486175d87c9b9e2ee26fd584e /lib/CodeGen/CodeGenTypes.h | |
parent | 83ccfc3cf035fae158358776910b617a188471c7 (diff) |
Implement code generation of member function pointer calls. Fixes PR5121.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83271 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenTypes.h')
-rw-r--r-- | lib/CodeGen/CodeGenTypes.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenTypes.h b/lib/CodeGen/CodeGenTypes.h index 53df106820..ad71e0ad05 100644 --- a/lib/CodeGen/CodeGenTypes.h +++ b/lib/CodeGen/CodeGenTypes.h @@ -181,7 +181,11 @@ public: const CGFunctionInfo &getFunctionInfo(const FunctionDecl *FD); const CGFunctionInfo &getFunctionInfo(const CXXMethodDecl *MD); const CGFunctionInfo &getFunctionInfo(const ObjCMethodDecl *MD); - + + // getFunctionInfo - Get the function info for a member function. + const CGFunctionInfo &getFunctionInfo(const CXXRecordDecl *RD, + const FunctionProtoType *FTP); + /// getFunctionInfo - Get the function info for a function described by a /// return type and argument types. If the calling convention is not /// specified, the "C" calling convention will be used. |