<div dir="ltr">They failed to compile because of an unused variable if assertion is disabled, so it was not really related to lld's functionality.</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, May 13, 2013 at 8:08 PM, David Blaikie <span dir="ltr"><<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Mon, May 13, 2013 at 6:51 PM, Rui Ueyama <<a href="mailto:ruiu@google.com">ruiu@google.com</a>> wrote:<br>


> Author: ruiu<br>
> Date: Mon May 13 20:51:56 2013<br>
> New Revision: 181752<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=181752&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=181752&view=rev</a><br>
> Log:<br>
> [lld][LayoutPass] Fix a bug that caused buildbot to fail on some platforms.<br>
<br>
</div>Would it be possible/practical to add a test case that would fail on<br>
all platforms?<br>
<div class="HOEnZb"><div class="h5"><br>
><br>
> Modified:<br>
>     lld/trunk/lib/Passes/LayoutPass.cpp<br>
><br>
> Modified: lld/trunk/lib/Passes/LayoutPass.cpp<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Passes/LayoutPass.cpp?rev=181752&r1=181751&r2=181752&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Passes/LayoutPass.cpp?rev=181752&r1=181751&r2=181752&view=diff</a><br>


> ==============================================================================<br>
> --- lld/trunk/lib/Passes/LayoutPass.cpp (original)<br>
> +++ lld/trunk/lib/Passes/LayoutPass.cpp Mon May 13 20:51:56 2013<br>
> @@ -144,15 +144,16 @@ const DefinedAtom *LayoutPass::findAtomF<br>
>  bool LayoutPass::checkAllPrevAtomsZeroSize(const DefinedAtom *targetAtom) {<br>
>    const DefinedAtom *atom = _followOnRoots[targetAtom];<br>
>    while (true) {<br>
> -    AtomToAtomT::iterator targetFollowOnAtomsIter = _followOnNexts.find(atom);<br>
> -    // The target atom must be in the chain of its root.<br>
> -    assert(targetFollowOnAtomsIter != _followOnNexts.end());<br>
>      if (atom == targetAtom)<br>
>        return true;<br>
>      if ((*atom).size() != 0)<br>
>        // TODO: print warning that an impossible layout is being desired by the<br>
>        // user.<br>
>        return false;<br>
> +    AtomToAtomT::iterator targetFollowOnAtomsIter = _followOnNexts.find(atom);<br>
> +    // The target atom must be in the chain of its root.<br>
> +    assert(targetFollowOnAtomsIter != _followOnNexts.end());<br>
> +    atom = targetFollowOnAtomsIter->second;<br>
>    }<br>
>  }<br>
><br>
><br>
><br>
> _______________________________________________<br>
> llvm-commits mailing list<br>
> <a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</div></div></blockquote></div><br></div>