<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">This test case was failing on our Darwin machines with the following error:<div><br></div><div><pre style="font-family: 'Courier New', courier, monotype;"><span class="stdout">llvm/test/CodeGen/PowerPC/vec_mul.ll:44:10: error: expected string not found in input
; CHECK: vspltisw [[ZNEG:[0-9]+]], -1
         ^
<stdin>:84:14: note: scanning from here
_test_float: ; @test_float
             ^
<stdin>:88:2: note: possible intended match here
 vspltisw v4, -1
 ^
--</span></pre><div>so I attempted to fix it here.  Unfortunately, the lab bots are now screaming at me.  Specifically, the ppc linux machines.. :(</div></div><div><br></div><div>Adhemerval/Takumi, would you mind taking a look?</div><div><br></div><div> Chad<br><div><br><div>Begin forwarded message:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-family:'Helvetica'; font-size:medium; color:rgba(0, 0, 0, 1.0);"><b>From: </b></span><span style="font-family:'Helvetica'; font-size:medium;">Chad Rosier <<a href="mailto:mcrosier@apple.com">mcrosier@apple.com</a>><br></span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-family:'Helvetica'; font-size:medium; color:rgba(0, 0, 0, 1.0);"><b>Subject: </b></span><span style="font-family:'Helvetica'; font-size:medium;"><b>[llvm-commits] [llvm] r169020 - /llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll</b><br></span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-family:'Helvetica'; font-size:medium; color:rgba(0, 0, 0, 1.0);"><b>Date: </b></span><span style="font-family:'Helvetica'; font-size:medium;">November 30, 2012, 10:29:01 AM PST<br></span></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-family:'Helvetica'; font-size:medium; color:rgba(0, 0, 0, 1.0);"><b>To: </b></span><span style="font-family:'Helvetica'; font-size:medium;"><a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br></span></div><br><div>Author: mcrosier<br>Date: Fri Nov 30 12:29:01 2012<br>New Revision: 169020<br><br>URL: <a href="http://llvm.org/viewvc/llvm-project?rev=169020&view=rev">http://llvm.org/viewvc/llvm-project?rev=169020&view=rev</a><br>Log:<br>test/CodeGen/PowerPC/vec_mul.ll: Fix register operands.<br><br>Modified:<br>    llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll<br><br>Modified: llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll<br>URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll?rev=169020&r1=169019&r2=169020&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll?rev=169020&r1=169019&r2=169020&view=diff</a><br>==============================================================================<br>--- llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll (original)<br>+++ llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll Fri Nov 30 12:29:01 2012<br>@@ -41,6 +41,6 @@<br> ; all bits set and shifting it 31 bits to left, resulting a an vector of <br> ; 4 x 0x80000000 (-0.0 as float).<br> ; CHECK: test_float:<br>-; CHECK: vspltisw [[ZNEG:[0-9]+]], -1<br>-; CHECK: vslw     {{[0-9]+}}, [[ZNEG]], [[ZNEG]]<br>+; CHECK: vspltisw [[ZNEG:v[0-9]+]], -1<br>+; CHECK: vslw     {{v[0-9]+}}, [[ZNEG]], [[ZNEG]]<br> ; CHECK: vmaddfp<br><br><br>_______________________________________________<br>llvm-commits mailing list<br><a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits<br></div></blockquote></div><br></div></body></html>