diff options
author | Mike Stump <mrs@apple.com> | 2009-11-10 07:44:33 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-11-10 07:44:33 +0000 |
commit | d846d0825be204cae03fee343cfca73ac42ad505 (patch) | |
tree | 2752aad6f7ac617988957a540e3e68fa101ed8b4 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 1559bedcc7f4b291a0d4797890383e0ddb573dc8 (diff) | |
download | bcm5719-llvm-d846d0825be204cae03fee343cfca73ac42ad505.tar.gz bcm5719-llvm-d846d0825be204cae03fee343cfca73ac42ad505.zip |
Add vtable caching to prevent multiple vtables for the same class from
being generated.
Add the most derived vtable pointer to the VTT.
llvm-svn: 86671
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index fdbab245d05..593840213ae 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -381,12 +381,6 @@ public: /// legal to call this function even if there is no current insertion point. void FinishFunction(SourceLocation EndLoc=SourceLocation()); - /// GenerateVtable - Generate the vtable for the given type. - llvm::Value *GenerateVtable(const CXXRecordDecl *RD); - - /// GenerateVTT - Generate the VTT for the given type. - llvm::Value *GenerateVTT(const CXXRecordDecl *RD); - /// DynamicTypeAdjust - Do the non-virtual and virtual adjustments on an /// object pointer to alter the dynamic type of the pointer. Used by /// GenerateCovariantThunk for building thunks. |