<div dir="ltr">Which bots were failing? MSVC? If so it might be sufficient to add an explicit move constructor to SectionPattern.<div><br></div><div>Cheers,</div><div>Rafael</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 16 September 2016 at 22:34, Rui Ueyama via llvm-commits <span dir="ltr"><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: ruiu<br>
Date: Fri Sep 16 21:34:50 2016<br>
New Revision: 281805<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=281805&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-<wbr>project?rev=281805&view=rev</a><br>
Log:<br>
Attempt to fix buildbot.<br>
<br>
Modified:<br>
    lld/trunk/ELF/LinkerScript.h<br>
<br>
Modified: lld/trunk/ELF/LinkerScript.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/LinkerScript.h?rev=281805&r1=281804&r2=281805&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-<wbr>project/lld/trunk/ELF/<wbr>LinkerScript.h?rev=281805&r1=<wbr>281804&r2=281805&view=diff</a><br>
==============================<wbr>==============================<wbr>==================<br>
--- lld/trunk/ELF/LinkerScript.h (original)<br>
+++ lld/trunk/ELF/LinkerScript.h Fri Sep 16 21:34:50 2016<br>
@@ -114,8 +114,11 @@ struct InputSectionDescription : BaseCom<br>
   SortSectionPolicy SortOuter = SortSectionPolicy::Default;<br>
   SortSectionPolicy SortInner = SortSectionPolicy::Default;<br>
<br>
-  // Pairs of section regex and files excluded.<br>
-  std::vector<SectionPattern> SectionPatterns;<br>
+  // Input sections that matches at lesat one of SectionPatterns<br>
+  // will be associated with this InputSectionDescription.<br>
+  // We use std::list instead of std::vector because SectionPattern<br>
+  // do not support move assignment.<br>
+  std::list<SectionPattern> SectionPatterns;<br>
<br>
   std::vector<InputSectionData *> Sections;<br>
 };<br>
<br>
<br>
______________________________<wbr>_________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div>