diff options
author | Anders Carlsson <andersca@mac.com> | 2010-05-02 23:29:11 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-05-02 23:29:11 +0000 |
commit | 8e6404ca28d6bbb76e97ea2a53a74816c2a74665 (patch) | |
tree | 71a86eabbf8f2969a2a2782f225c93a20840d2d9 /lib/CodeGen/CodeGenFunction.h | |
parent | 155ed4a23366f4514befb1c9f5f89d16f8b8b6db (diff) |
Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102882 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index b8435d39c4..7c91c28162 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -845,7 +845,7 @@ public: llvm::Value *This); void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type, - llvm::Value *This); + bool ForVirtualBase, llvm::Value *This); void PushCXXTemporary(const CXXTemporary *Temporary, llvm::Value *Ptr); void PopCXXTemporary(); |