diff options
author | Mike Stump <mrs@apple.com> | 2009-03-06 18:42:23 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-06 18:42:23 +0000 |
commit | cf62d39bc2f09855c6ab08bdc5d0bf54067f0041 (patch) | |
tree | e10063b8860a6de2ca53fcd223d22223bade8342 /lib/CodeGen/CodeGenFunction.h | |
parent | 5ea766a6acfff7da7f6c8a4d545616446f081d5e (diff) |
Pass the type of the block literal around to make required temporal ordering of code clearer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66284 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 26fde8423c..2ac886d840 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -266,7 +266,7 @@ public: //===--------------------------------------------------------------------===// llvm::Value *BuildBlockLiteralTmp(const BlockExpr *); - llvm::Constant *BuildDescriptorBlockDecl(uint64_t Size); + llvm::Constant *BuildDescriptorBlockDecl(uint64_t Size, const llvm::Type *); llvm::Function *GenerateBlockFunction(const BlockExpr *BExpr, const BlockInfo& Info, |