summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-12-09 21:54:10 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-12-09 21:54:10 +0000
commitb3e6c70c84214821b4759086519730e68303a455 (patch)
tree631444c1f4e1fc9327335fc2cf9c74027c4b742d /test
parent4332983e7757018f388ba24f58765571e0d134ed (diff)
downloadllvm-b3e6c70c84214821b4759086519730e68303a455.tar.gz
llvm-b3e6c70c84214821b4759086519730e68303a455.tar.bz2
llvm-b3e6c70c84214821b4759086519730e68303a455.tar.xz
Update test to something more sensible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/avx-shuffle.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/avx-shuffle.ll b/test/CodeGen/X86/avx-shuffle.ll
index e66a3d48d3..e9392ae607 100644
--- a/test/CodeGen/X86/avx-shuffle.ll
+++ b/test/CodeGen/X86/avx-shuffle.ll
@@ -10,11 +10,11 @@ define <4 x float> @test1(<4 x float> %a) nounwind {
}
; 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
}