Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions lld/MachO/ObjC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,10 +442,6 @@ class ObjcCategoryMerger {
PointerListInfo &ptrList,
SourceLanguage sourceLang);

PointerListInfo parseProtocolListInfo(const ConcatInputSection *isec,
uint32_t secOffset,
SourceLanguage sourceLang);

bool parsePointerListInfo(const ConcatInputSection *isec, uint32_t secOffset,
PointerListInfo &ptrList);

Expand Down Expand Up @@ -719,16 +715,6 @@ void ObjcCategoryMerger::parseProtocolListInfo(
"Protocol list end offset does not match expected size");
}

// Parse a protocol list and return the PointerListInfo for it
ObjcCategoryMerger::PointerListInfo
ObjcCategoryMerger::parseProtocolListInfo(const ConcatInputSection *isec,
uint32_t secOffset,
SourceLanguage sourceLang) {
PointerListInfo ptrList;
parseProtocolListInfo(isec, secOffset, ptrList, sourceLang);
return ptrList;
}

// Parse a pointer list that might be linked to ConcatInputSection at a given
// offset. This can be used for instance methods, class methods, instance props
// and class props since they have the same format.
Expand Down
Loading