Home | History | Annotate | Download | only in Reader

Lines Matching full:comdat

46   std::vector<Comdat *>().swap(ComdatList);
207 static Comdat::SelectionKind getDecodedComdatSelectionKind(unsigned Val) {
211 return Comdat::Any;
213 return Comdat::ExactMatch;
215 return Comdat::Largest;
217 return Comdat::NoDuplicates;
219 return Comdat::SameSize;
1858 case bitc::MODULE_CODE_COMDAT: { // COMDAT: [selection_kind, name]
1861 Comdat::SelectionKind SK = getDecodedComdatSelectionKind(Record[0]);
1867 Comdat *C = TheModule->getOrInsertComdat(ComdatName);