aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-11-10 02:30:51 +0000
committerMike Stump <mrs@apple.com>2009-11-10 02:30:51 +0000
commitfbfb52d4cf10b4fd1ac19d1445fe2ffcb9c2bbf1 (patch)
tree96843941ffc1f9129d9e1af7b8ebf43f3e485c22 /lib/CodeGen/CodeGenFunction.h
parent479529e679957fbb92b56e116e3c86734429331e (diff)
Be sure to clear out VCall when we clear out VCalls.
Start implementing VTTs. WIP. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86650 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index f2901beca4..fdbab245d0 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/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.