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 | fe5f7d916fced861b9e75da6f83f783dae940f59 (patch) | |
tree | 96a3e8050209df7f5d630deb57dcafd1c3164ee3 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 66aaa395686558931a349fcae040143cec5a6e2f (diff) | |
download | bcm5719-llvm-fe5f7d916fced861b9e75da6f83f783dae940f59.tar.gz bcm5719-llvm-fe5f7d916fced861b9e75da6f83f783dae940f59.zip |
Set the correct linkage for VTTs as well.
llvm-svn: 90689
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 65ca758405c..cf36bcf9a02 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/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); |