diff options
author | Anders Carlsson <andersca@mac.com> | 2009-12-06 01:09:21 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-12-06 01:09:21 +0000 |
commit | c3a46ef9f86aa0b38d3baf75d59cacc55cd7ba24 (patch) | |
tree | 2fa4820e321b55d5152783995699ca11378cbcf1 /lib/CodeGen/CodeGenModule.h | |
parent | d76fbda5da19c34752aa582e690a4dbd1cae39cd (diff) |
Set the correct linkage for VTTs as well.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90689 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 65ca758405..cf36bcf9a0 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -212,15 +212,14 @@ public: llvm::Constant *GetAddrOfFunction(GlobalDecl GD, const llvm::Type *Ty = 0); - /// GenerateVTT - Generate the VTT for the given type. - llvm::Constant *GenerateVTT(const CXXRecordDecl *RD); - /// GenerateRTTI - Generate the rtti information for the given type. llvm::Constant *GenerateRTTI(const CXXRecordDecl *RD); + /// GenerateRTTIRef - Generate a reference to the rtti information for the /// given type. llvm::Constant *GenerateRTTIRef(const CXXRecordDecl *RD); - /// GenerateRTTINonClass - Generate the rtti information for the given + + /// GenerateRTTI - Generate the rtti information for the given /// non-class type. llvm::Constant *GenerateRTTI(QualType Ty); |