aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGCall.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-04-06 18:05:26 +0000
committerAnders Carlsson <andersca@mac.com>2009-04-06 18:05:26 +0000
commit5529b24500a9cdeb45e9d4482ceb54fc39a7471e (patch)
tree470236166930f929a5c8f064dea9983669cc2318 /lib/CodeGen/CGCall.cpp
parent6c247e38e59caacf4a84a16c621fd470261998c9 (diff)
Add a getFunctionInfo that takes a BlockPointerType.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGCall.cpp')
-rw-r--r--lib/CodeGen/CGCall.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp
index e3f824fc74..43db767158 100644
--- a/lib/CodeGen/CGCall.cpp
+++ b/lib/CodeGen/CGCall.cpp
@@ -53,6 +53,19 @@ CGFunctionInfo &CodeGenTypes::getFunctionInfo(const FunctionProtoType *FTP) {
return getFunctionInfo(FTP->getResultType(), ArgTys);
}
+const
+CGFunctionInfo &CodeGenTypes::getFunctionInfo(const BlockPointerType *BPT) {
+ llvm::SmallVector<QualType, 16> ArgTys;
+ const FunctionProtoType *FTP =
+ BPT->getPointeeType()->getAsFunctionProtoType();
+
+ // Add the block pointer.
+ ArgTys.push_back(Context.getPointerType(Context.VoidTy));
+ for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i)
+ ArgTys.push_back(FTP->getArgType(i));
+ return getFunctionInfo(FTP->getResultType(), ArgTys);
+}
+
const CGFunctionInfo &CodeGenTypes::getFunctionInfo(const CXXMethodDecl *MD) {
llvm::SmallVector<QualType, 16> ArgTys;
// Add the 'this' pointer.