Lines Matching defs:VTT
41 CodeGenVTables::EmitVTTDefinition(llvm::GlobalVariable *VTT,
103 VTT->setInitializer(Init);
106 VTT->setLinkage(Linkage);
108 if (CGM.supportsCOMDAT() && VTT->isWeakForLinker())
109 VTT->setComdat(CGM.getModule().getOrInsertComdat(VTT->getName()));
111 // Set the visibility. This will already have been set on the VTT declaration.
114 CGM.setGVProperties(VTT, RD);
118 assert(RD->getNumVBases() && "Only classes with virtual bases need a VTT");
126 // This will also defer the definition of the VTT.