<div dir="ltr">Yep. As I mentioned in the other thread, I'll try to hook this up to LLI soon.<div><br></div><div>Cheers,</div><div>Lang.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 13, 2015 at 3:02 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 dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><span class="">On Thu, Mar 12, 2015 at 8:56 PM, Richard Smith <span dir="ltr"><<a href="mailto:richard-llvm@metafoo.co.uk" target="_blank">richard-llvm@metafoo.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: rsmith<br>
Date: Thu Mar 12 22:56:27 2015<br>
New Revision: 232139<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=232139&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=232139&view=rev</a><br>
Log:<br>
Fix build break in this code. Nothing uses this header, but the modules<br>
buildbot builds it anyway and was angry because of this.<br></blockquote></span><div><br>Heh, excellent.<br><br>Lang - unit tests? (or how did this not have a problem in your Kaleidoscope tutorials? oh, right, they're not built by default and this was a recent API change that broke it)<br> </div><div><div class="h5"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Modified:<br>
    llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h<br>
<br>
Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h?rev=232139&r1=232138&r2=232139&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h?rev=232139&r1=232138&r2=232139&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h (original)<br>
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h Thu Mar 12 22:56:27 2015<br>
@@ -274,7 +274,7 @@ private:<br>
       // Set the compile actions for this module:<br>
       for (auto &KVPair : NewStubInfos) {<br>
         std::string BodyName = Mangle(KVPair->first + BodySuffix,<br>
-                                      *M.getDataLayout());<br>
+                                      M.getDataLayout());<br>
         auto &CCInfo = KVPair->second;<br>
         CCInfo.setCompileAction(<br>
           [=](){<br>
@@ -291,7 +291,7 @@ private:<br>
<br>
     for (auto &KVPair : StubInfos) {<br>
       std::string AddrName = Mangle(KVPair.first + AddrSuffix,<br>
-                                    *M.getDataLayout());<br>
+                                    M.getDataLayout());<br>
       auto &CCInfo = KVPair.second;<br>
       CCInfo.setUpdateAction(<br>
         CompileCallbackMgr.getLocalFPUpdater(StubsH, AddrName));<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@cs.uiuc.edu" target="_blank">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></div></div><br></div></div>
</blockquote></div><br></div>