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 | 52b8a052344c871b859e5f2d43d5c9b8fff46c8f (patch) | |
tree | 48315b5e363b5a4ec4a736fd06174ccc39c08742 /clang/lib/CodeGen/MicrosoftCXXABI.cpp | |
parent | d11e9a8300d1383ce0f6a84d717824da42a1745f (diff) | |
download | bcm5719-llvm-52b8a052344c871b859e5f2d43d5c9b8fff46c8f.tar.gz bcm5719-llvm-52b8a052344c871b859e5f2d43d5c9b8fff46c8f.zip |
First step towards vftable generation with -cxx-abi microsoft PR13231
llvm-svn: 173035
Diffstat (limited to 'clang/lib/CodeGen/MicrosoftCXXABI.cpp')
-rw-r--r-- | clang/lib/CodeGen/MicrosoftCXXABI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/MicrosoftCXXABI.cpp b/clang/lib/CodeGen/MicrosoftCXXABI.cpp index 8d205c3d0f5..8e4929294d1 100644 --- a/clang/lib/CodeGen/MicrosoftCXXABI.cpp +++ b/clang/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) { |