diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-12-09 21:54:10 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-12-09 21:54:10 +0000 |
commit | 1d54d2210afb61676271a83f852dadfd4e93c130 (patch) | |
tree | 2e498ae5041315b11f25bfd9af7c97fc781df000 | |
parent | ea1b353e674dedbd0ec32fc4dad1c5291ddbea14 (diff) | |
download | bcm5719-llvm-1d54d2210afb61676271a83f852dadfd4e93c130.tar.gz bcm5719-llvm-1d54d2210afb61676271a83f852dadfd4e93c130.zip |
Update test to something more sensible.
llvm-svn: 146282
-rw-r--r-- | llvm/test/CodeGen/X86/avx-shuffle.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/avx-shuffle.ll b/llvm/test/CodeGen/X86/avx-shuffle.ll index e66a3d48d38..e9392ae6075 100644 --- a/llvm/test/CodeGen/X86/avx-shuffle.ll +++ b/llvm/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 } |