[llvm-commits] [llvm] r169020 - /llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll

Chad Rosier mcrosier at apple.com
Fri Nov 30 10:29:01 PST 2012


Author: mcrosier
Date: Fri Nov 30 12:29:01 2012
New Revision: 169020

URL: http://llvm.org/viewvc/llvm-project?rev=169020&view=rev
Log:
test/CodeGen/PowerPC/vec_mul.ll: Fix register operands.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll?rev=169020&r1=169019&r2=169020&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/vec_mul.ll Fri Nov 30 12:29:01 2012
@@ -41,6 +41,6 @@
 ; all bits set and shifting it 31 bits to left, resulting a an vector of 
 ; 4 x 0x80000000 (-0.0 as float).
 ; CHECK: test_float:
-; CHECK: vspltisw [[ZNEG:[0-9]+]], -1
-; CHECK: vslw     {{[0-9]+}}, [[ZNEG]], [[ZNEG]]
+; CHECK: vspltisw [[ZNEG:v[0-9]+]], -1
+; CHECK: vslw     {{v[0-9]+}}, [[ZNEG]], [[ZNEG]]
 ; CHECK: vmaddfp





More information about the llvm-commits mailing list