Skip to content

Commit

Permalink
Update test to something more sensible.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146282 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Evan Cheng committed Dec 9, 2011
1 parent 4332983 commit b3e6c70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/CodeGen/X86/avx-shuffle.ll
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit b3e6c70

Please sign in to comment.