<div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Thu, Jun 21, 2018 at 7:50 AM Sanjay Patel via llvm-commits <<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jun 21, 2018 at 6:55 AM, Alex Bradbury <span dir="ltr"><<a href="mailto:asb@asbradbury.org" target="_blank">asb@asbradbury.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 21 June 2018 at 06:42, Chandler Carruth via llvm-commits<br>
<span><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a>> wrote:<br>
> Author: chandlerc<br>
> Date: Wed Jun 20 22:42:05 2018<br>
> New Revision: 335202<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=335202&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=335202&view=rev</a><br>
> Log:<br>
> [RISC-V] Fix a test case to not include label names as those aren't<br>
> stable in non-asserts builds. This fixes a test failure in release<br>
> config.<br>
<br>
</span>Thanks for the fix, the failure was triggered by a change in label<br>
names in r335183.<br>
<br>
CHECK lines including label names are frequently generated by<br>
update_llc_test_checks.py. It looks like .L* # %somename' is checked<br>
in 157 files within test/CodeGen/*.<br>
<br>
$ git grep -l -i "\.L.*# %" test/CodeGen | wc -l<br>
157<br>
<br>
These don't currently pose a problem for running the test suite in<br>
release builds, but arguably it makes the tests more brittle than<br>
necessary. Should we be stripping these comments in<br>
update_llc_test_checks.py?<br>
</blockquote></div></div><div class="gmail_extra"><br></div></div><div dir="ltr"><div class="gmail_extra">Sounds like a good idea (or at least as an option). Adding people who have worked on the scripts more recently than me.<br></div></div></blockquote><div><br></div><div>I think the root cause is that these labels are not stable for this *particular* test and/or this *particular* target.</div><div><br></div><div>We've had no issues using the label names on x86 that I can remember.</div><div><br></div><div>I'd suggest keeping the ability to check label names in the tests because it makes them dramatically more readable, and instead figuring out how to stabilize the names used in this *particular* test.</div><div><br></div><div>(My impression is that these names are actually coming from instructions not IR label names, because they didn't go away in the opt build they just changed value. Sorry for taking a quick fix approach, but I just wanted check-tests to pass. ;])</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"></div><div class="gmail_extra"><br></div></div>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">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/mailman/listinfo/llvm-commits</a><br>
</blockquote></div></div>