diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-13 19:27:47 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-13 19:27:47 +0000 |
commit | 6814eaa2ccf78481d7dae4aa251decadafd20905 (patch) | |
tree | 5985f638de455c5e9707c0643048c73ed06c0cad /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 1fe64cb05955e14324c53b6a4098257765239c72 (diff) | |
download | bcm5719-llvm-6814eaa2ccf78481d7dae4aa251decadafd20905.tar.gz bcm5719-llvm-6814eaa2ccf78481d7dae4aa251decadafd20905.zip |
Code gen for arrady delete operator. Fixes pr5472.
llvm-svn: 88680
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 c69dcb505ac..5f8a1969f91 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -646,6 +646,10 @@ public: const ArrayType *Array, llvm::Value *This); + void EmitCXXAggrDestructorCall(const CXXDestructorDecl *D, + llvm::Value *NumElements, + llvm::Value *This); + llvm::Constant * GenerateCXXAggrDestructorHelper(const CXXDestructorDecl *D, const ArrayType *Array, llvm::Value *This); |