diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2013-08-21 17:33:16 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2013-08-21 17:33:16 +0000 |
commit | d8fa10db12b4be06c77ea6df8700a69c5f29cd75 (patch) | |
tree | 9d01315ca87703252670b13358bff551ef270fa3 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 6c6a01de3bd6d130935a8a3905d351805e4eb0e7 (diff) | |
download | llvm-d8fa10db12b4be06c77ea6df8700a69c5f29cd75.zip llvm-d8fa10db12b4be06c77ea6df8700a69c5f29cd75.tar.gz llvm-d8fa10db12b4be06c77ea6df8700a69c5f29cd75.tar.bz2 |
[CGF] Get rid of passing redundant VTable pointer around in CodeGenFunction::InitializeVTablePointer[s]
llvm-svn: 188909
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index af9373a..f8dcfa3 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1180,7 +1180,6 @@ public: void InitializeVTablePointer(BaseSubobject Base, const CXXRecordDecl *NearestVBase, CharUnits OffsetFromNearestVBase, - llvm::Constant *VTable, const CXXRecordDecl *VTableClass); typedef llvm::SmallPtrSet<const CXXRecordDecl *, 4> VisitedVirtualBasesSetTy; @@ -1188,7 +1187,6 @@ public: const CXXRecordDecl *NearestVBase, CharUnits OffsetFromNearestVBase, bool BaseIsNonVirtualPrimaryBase, - llvm::Constant *VTable, const CXXRecordDecl *VTableClass, VisitedVirtualBasesSetTy& VBases); |