Fix ctor vtable name. WIP.

llvm-svn: 86879
This commit is contained in:
Mike Stump 2009-11-11 20:32:03 +00:00
parent eac4559790
commit fd84d6d808
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ llvm::Constant *CodeGenModule::GenerateVtable(const CXXRecordDecl *RD,
llvm::SmallString<256> OutName;
llvm::raw_svector_ostream Out(OutName);
if (LayoutClass)
mangleCXXCtorVtable(getMangleContext(), RD, Offset, LayoutClass, Out);
mangleCXXCtorVtable(getMangleContext(), LayoutClass, Offset, RD, Out);
else
mangleCXXVtable(getMangleContext(), RD, Out);