diff options
author | Anders Carlsson <andersca@mac.com> | 2010-06-08 22:14:59 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-06-08 22:14:59 +0000 |
commit | 02e370a02f05b4a734fe5e8c88efc4ed9dac60fa (patch) | |
tree | 80b3c5123af35f73cb845f8b955c56b990834c06 /lib/CodeGen/CodeGenFunction.h | |
parent | 61f69d9581fc5882b6a3a725c2804dddee4e9b38 (diff) |
Simplify GenerateCXXAggrDestructorHelper.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105646 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index a0e5da1a0f..21c0857769 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -835,9 +835,9 @@ public: llvm::Value *NumElements, llvm::Value *This); - llvm::Constant *GenerateCXXAggrDestructorHelper(const CXXDestructorDecl *D, - const ArrayType *Array, - llvm::Value *This); + llvm::Function *GenerateCXXAggrDestructorHelper(const CXXDestructorDecl *D, + const ArrayType *Array, + llvm::Value *This); void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type, bool ForVirtualBase, llvm::Value *This); |