diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-20 20:54:15 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-20 20:54:15 +0000 |
commit | 9c83720d17e5a6699a7f3d86a80e6f7bfd9f9166 (patch) | |
tree | f3da72e6b86647ee646e5f5b47243321ddc86741 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | e7e865cf0bc6a0376348b19462625e7d29062e54 (diff) | |
download | bcm5719-llvm-9c83720d17e5a6699a7f3d86a80e6f7bfd9f9166.tar.gz bcm5719-llvm-9c83720d17e5a6699a7f3d86a80e6f7bfd9f9166.zip |
ir-gen patch to destruct array members. WIP.
llvm-svn: 79565
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index b4cbc965d54..71614c451ce 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -587,6 +587,10 @@ public: const ArrayType *Array, llvm::Value *This); + void EmitCXXAggrDestructorCall(const CXXDestructorDecl *D, + const ArrayType *Array, + llvm::Value *This); + void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type, llvm::Value *This); |