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 | d6ef62f0bf93dc7825158f464cbbd723e37ddd20 (patch) | |
tree | 7416db4a2ee6002c2f7966ab69e7fd51b7c35aef /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 13e9eff3f2aa99c674e086ff990b3d7250ba1a76 (diff) | |
download | bcm5719-llvm-d6ef62f0bf93dc7825158f464cbbd723e37ddd20.tar.gz bcm5719-llvm-d6ef62f0bf93dc7825158f464cbbd723e37ddd20.zip |
Pass the type of the block literal around to make required temporal ordering of code clearer.
llvm-svn: 66284
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 26fde8423c3..2ac886d8403 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/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, |