Lines Matching full:comdat
110 void WriteComdat(const Comdat *C) {
148 void CheckFailed(const Twine &Message, const Comdat *C) {
245 for (const StringMapEntry<Comdat> &SMEC : M.getComdatSymbolTable())
264 void visitComdat(const Comdat &C);
406 Assert1(!GV.hasComdat(), "'common' global may not be in a Comdat!", &GV);
600 void Verifier::visitComdat(const Comdat &C) {
601 // All Comdat::SelectionKind values other than Comdat::Any require a
602 // GlobalValue with the same name as the Comdat.
604 if (C.getSelectionKind() != Comdat::Any)
606 "comdat selection kind requires a global value with the same name",
612 Assert1(!GV->hasLocalLinkage(), "comdat global value has local linkage",