diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-06 20:27:16 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-06 20:27:16 +0000 |
commit | 4b0f21c0f8bed0e2a7dc62d73be64e7e277d6c9a (patch) | |
tree | 9ca820cbc7ec579e24320eaf2b6dc920325aad6c /lib/CodeGen/CodeGenModule.h | |
parent | 90665bd87f4ef7c230742e038cd0bad68e40fc78 (diff) |
Fix marking of virtual members for nested classes whose first non-pure virtual function has a body inlined in the class
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92855 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index a31e23b2c7..575b518767 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -407,6 +407,10 @@ public: GVA_TemplateInstantiation }; + /// getVtableLinkage - Return the appropriate linkage for the vtable, VTT, + /// and type information of the given class. + llvm::GlobalVariable::LinkageTypes getVtableLinkage(const CXXRecordDecl *RD); + private: /// UniqueMangledName - Unique a name by (if necessary) inserting it into the /// MangledNames string map. |