Attempt to fix buildbot.

llvm-svn: 281805
This commit is contained in:
Rui Ueyama 2016-09-17 02:34:50 +00:00
parent 0ab39359de
commit 70efa2f251
1 changed files with 5 additions and 2 deletions

View File

@ -114,8 +114,11 @@ struct InputSectionDescription : BaseCommand {
SortSectionPolicy SortOuter = SortSectionPolicy::Default; SortSectionPolicy SortOuter = SortSectionPolicy::Default;
SortSectionPolicy SortInner = SortSectionPolicy::Default; SortSectionPolicy SortInner = SortSectionPolicy::Default;
// Pairs of section regex and files excluded. // Input sections that matches at lesat one of SectionPatterns
std::vector<SectionPattern> SectionPatterns; // will be associated with this InputSectionDescription.
// We use std::list instead of std::vector because SectionPattern
// do not support move assignment.
std::list<SectionPattern> SectionPatterns;
std::vector<InputSectionData *> Sections; std::vector<InputSectionData *> Sections;
}; };