diff options
author | Anders Carlsson <andersca@mac.com> | 2010-03-28 20:55:21 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-03-28 20:55:21 +0000 |
commit | 4658990ac17046bfe7a30c45c9faea9e617eb479 (patch) | |
tree | f885c96942b39735d31aca8e5357363adf5efff0 /lib/CodeGen/CodeGenFunction.h | |
parent | bdb88655204ec14a20e51210bd50e84fe2f1cee9 (diff) |
Looks like I broke self-host again :(.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 31ab1011b4..3d7165b0a9 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -519,13 +519,11 @@ public: const CXXRecordDecl *VTableClass); typedef llvm::SmallPtrSet<const CXXRecordDecl *, 4> VisitedVirtualBasesSetTy; - void InitializeVTablePointers(BaseSubobject Base, bool BaseIsMorallyVirtual, - bool BaseIsNonVirtualPrimaryBase, - llvm::Constant *VTable, - const CXXRecordDecl *VTableClass, - VisitedVirtualBasesSetTy& VBases); - void InitializeVTablePointers(const CXXRecordDecl *ClassDecl); + void InitializeVtablePtrs(BaseSubobject Base, llvm::Constant *VTable, + const CXXRecordDecl *VTableClass); + + void InitializeVtablePtrs(const CXXRecordDecl *ClassDecl); void SynthesizeCXXCopyConstructor(const FunctionArgList &Args); |