<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Feb 9, 2015 at 4:37 PM, Lang Hames <span dir="ltr"><<a href="mailto:lhames@gmail.com" target="_blank">lhames@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: lhames<br>
Date: Mon Feb  9 18:37:26 2015<br>
New Revision: 228637<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=228637&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=228637&view=rev</a><br>
Log:<br>
[Orc] Back out one of the GCC ICE workarounds from r228568. NFC.<br></blockquote><div><br>So the end conclusion was that you only needed to add the explicit "this->" when you had some by-ref captures? (or default by-ref capture, I suppose?)<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<br>
Modified:<br>
    llvm/trunk/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h<br>
<br>
Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h?rev=228637&r1=228636&r2=228637&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h?rev=228637&r1=228636&r2=228637&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h (original)<br>
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h Mon Feb  9 18:37:26 2015<br>
@@ -224,8 +224,8 @@ public:<br>
         [this, Addr, H](){<br>
           if (H->NeedsFinalization()) {<br>
             H->Finalize();<br>
-            if (this->NotifyFinalized)<br>
-              this->NotifyFinalized(H);<br>
+            if (NotifyFinalized)<br>
+              NotifyFinalized(H);<br>
           }<br>
           return Addr;<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>
</blockquote></div><br></div></div>