diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index ae413b5c5c26..1831c1603cb9 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -201,13 +201,12 @@ static std::string filename(InputFile *File) { } bool LinkerScript::shouldKeep(InputSectionBase *S) { - for (InputSectionDescription *ID : KeptSections) { - std::string Filename = filename(S->File); + std::string Filename = filename(S->File); + for (InputSectionDescription *ID : KeptSections) if (ID->FilePat.match(Filename)) for (SectionPattern &P : ID->SectionPatterns) if (P.SectionPat.match(S->Name)) return true; - } return false; }