diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2013-01-21 13:02:41 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2013-01-21 13:02:41 +0000 |
commit | 649c7316aa29181df7270732722fe5d07ab3c7ad (patch) | |
tree | 24c9fd9364ad760821804f377567d0df8d199015 /lib/CodeGen | |
parent | 445743dec72f675070d4789c348607cd8cbf6090 (diff) |
First step towards vftable generation with -cxx-abi microsoft PR13231
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173035 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/MicrosoftCXXABI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MicrosoftCXXABI.cpp b/lib/CodeGen/MicrosoftCXXABI.cpp index 8d205c3d0f..8e4929294d 100644 --- a/lib/CodeGen/MicrosoftCXXABI.cpp +++ b/lib/CodeGen/MicrosoftCXXABI.cpp @@ -207,7 +207,7 @@ void MicrosoftCXXABI::EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D, } void MicrosoftCXXABI::EmitVTables(const CXXRecordDecl *Class) { - // FIXME: implement + CGM.getVTables().GenerateClassData(CGM.getVTableLinkage(Class), Class); } CGCXXABI *clang::CodeGen::CreateMicrosoftCXXABI(CodeGenModule &CGM) { |