diff options
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.h')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.h b/clang/lib/CodeGen/CGBlocks.h index 84ad190d6ff..adcb4af0d1f 100644 --- a/clang/lib/CodeGen/CGBlocks.h +++ b/clang/lib/CodeGen/CGBlocks.h @@ -160,8 +160,14 @@ public: llvm::Constant *GenerateCopyHelperFunction(); llvm::Constant *GenerateDestroyHelperFunction(); - llvm::Constant *BuildCopyHelper(int flag); - llvm::Constant *BuildDestroyHelper(int flag); + llvm::Constant *BuildCopyHelper(); + llvm::Constant *BuildDestroyHelper(); + + llvm::Constant *GeneratebyrefCopyHelperFunction(); + llvm::Constant *GeneratebyrefDestroyHelperFunction(); + + llvm::Constant *BuildbyrefCopyHelper(int flag); + llvm::Constant *BuildbyrefDestroyHelper(int flag); llvm::Value *getBlockObjectDispose(); void BuildBlockRelease(const VarDecl &D, llvm::Value *DeclPtr); |