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 | f800f6c09ed4a71bcb593d6962e0fda2c2845a70 (patch) | |
tree | 63fb787c6f9ff59013f0989531165c3a11e1d819 /lib/CodeGen/CodeGenFunction.h | |
parent | 028011527e7e72e58e6025603db7525c5a22d6e0 (diff) |
ir-gen patch to destruct array members. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index b4cbc965d5..71614c451c 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/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); |