<div dir="ltr">Hi Warren, I'm also hitting the same error in our internal test with optimized build. Would you mind relaxing the checks as you described? Thanks!<br></div><br><div class="gmail_quote"><div dir="ltr">On Thu, Oct 11, 2018 at 8:01 PM Warren Ristow via Phabricator 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">wristow added a comment.<br>
<br>
In <a href="https://reviews.llvm.org/D52836#1262070" rel="noreferrer" target="_blank">https://reviews.llvm.org/D52836#1262070</a>, @MaskRay wrote:<br>
<br>
> However, the function argument uses an implicit label `%0`, causing failure of `LTO/X86/libcall-overridden-via-alias.ll`<br>
><br>
>   ; Function Attrs: norecurse nounwind readnone<br>
>   define internal float @logf(float) #2 {<br>
>     %2 = fadd float %0, %0<br>
>     ret float %2<br>
>   }<br>
><br>
<br>
<br>
I'm not seeing the implicit `%0` in local runs, so I'm not seeing this failure.  And searching on the bots I couldn't find it either.  What I see in my local runs is an explicit parameter `%x`:<br>
<br>
  ; Function Attrs: norecurse nounwind readnone<br>
  define internal float @logf(float %x) #2 {<br>
    %add = fadd float %x, %x<br>
    ret float %add<br>
  }<br>
<br>
I can change the test to just look for an `fadd` followed by the `ret` (and so just not verify that the `fadd` is adding the formal arg to itself, which isn't critical), but I'm puzzled as to how this is happening.  Can you let me know which bot is failing?<br>
<br>
<br>
Repository:<br>
  rL LLVM<br>
<br>
<a href="https://reviews.llvm.org/D52836" rel="noreferrer" target="_blank">https://reviews.llvm.org/D52836</a><br>
<br>
<br>
<br>
_______________________________________________<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>