Finish off mangling for the VTT.

llvm-svn: 86647
This commit is contained in:
Mike Stump 2009-11-10 01:58:37 +00:00
parent 38c44ea6b0
commit 3b9176985d
1 changed files with 8 additions and 0 deletions

View File

@ -1456,6 +1456,14 @@ namespace clang {
os.flush(); os.flush();
} }
void mangleCXXVTT(MangleContext &Context, const CXXRecordDecl *RD,
llvm::raw_ostream &os) {
CXXNameMangler Mangler(Context, os);
Mangler.mangleCXXVTT(RD);
os.flush();
}
void mangleCXXCtorVtable(MangleContext &Context, const CXXRecordDecl *RD, void mangleCXXCtorVtable(MangleContext &Context, const CXXRecordDecl *RD,
int64_t Offset, const CXXRecordDecl *Type, int64_t Offset, const CXXRecordDecl *Type,
llvm::raw_ostream &os) { llvm::raw_ostream &os) {