]> granicus.if.org Git - clang/commitdiff
Finish off mangling for the VTT.
authorMike Stump <mrs@apple.com>
Tue, 10 Nov 2009 01:58:37 +0000 (01:58 +0000)
committerMike Stump <mrs@apple.com>
Tue, 10 Nov 2009 01:58:37 +0000 (01:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86647 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/Mangle.cpp

index 143b36676a08427739d314971513e18ba848954b..0b00c17330bd7897e45c3c4cbe879925571c2ab5 100644 (file)
@@ -1456,6 +1456,14 @@ namespace clang {
     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,
                            int64_t Offset, const CXXRecordDecl *Type,
                            llvm::raw_ostream &os) {