[llvm-commits] [llvm] r146282 - /llvm/trunk/test/CodeGen/X86/avx-shuffle.ll

Evan Cheng evan.cheng at apple.com
Fri Dec 9 13:54:10 PST 2011


Author: evancheng
Date: Fri Dec  9 15:54:10 2011
New Revision: 146282

URL: http://llvm.org/viewvc/llvm-project?rev=146282&view=rev
Log:
Update test to something more sensible.

Modified:
    llvm/trunk/test/CodeGen/X86/avx-shuffle.ll

Modified: llvm/trunk/test/CodeGen/X86/avx-shuffle.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx-shuffle.ll?rev=146282&r1=146281&r2=146282&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx-shuffle.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx-shuffle.ll Fri Dec  9 15:54:10 2011
@@ -10,11 +10,11 @@
 }
 
 ; rdar://10538417
-define <3 x i64> @test2(<3 x i64> %v) nounwind readnone {
+define <3 x i64> @test2(<2 x i64> %v) nounwind readnone {
 ; CHECK: test2:
-; CHECK: vxorps
+; CHECK: vxorpd
 ; CHECK: vmovsd
-  %1 = shufflevector <2 x i64> undef, <2 x i64> undef, <3 x i32> <i32 0, i32 1, i32 undef>
+  %1 = shufflevector <2 x i64> %v, <2 x i64> %v, <3 x i32> <i32 0, i32 1, i32 undef>
   %2 = shufflevector <3 x i64> zeroinitializer, <3 x i64> %1, <3 x i32> <i32 3, i32 4, i32 2>
   ret <3 x i64> %2
 }





More information about the llvm-commits mailing list