diff options
author | Mike Stump <mrs@apple.com> | 2009-11-10 02:30:51 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-11-10 02:30:51 +0000 |
commit | 9f23a149cbe1f3f8a21aa4d20d867459235f901d (patch) | |
tree | 5bb8b432771b99a4489c5b3158653105b6ab327a /clang/lib/CodeGen/CodeGenFunction.h | |
parent | f8f3f9ddbc5a0b96a4cca7b5cea57c0ac5105369 (diff) | |
download | bcm5719-llvm-9f23a149cbe1f3f8a21aa4d20d867459235f901d.tar.gz bcm5719-llvm-9f23a149cbe1f3f8a21aa4d20d867459235f901d.zip |
Be sure to clear out VCall when we clear out VCalls.
Start implementing VTTs. WIP.
llvm-svn: 86650
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index f2901beca40..fdbab245d05 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -384,6 +384,9 @@ public: /// 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. |