new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27572 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-04-10 23:06:18 +00:00
parent a844fc4cb0
commit 0bb1681337

View File

@ -15,3 +15,10 @@ implementation
ret %T %v2
}
float %test3(%T %A, %T %B, float %f) {
%C = insertelement %T %A, float %f, uint 0
%D = shufflevector %T %C, %T %B, <4 x uint> <uint 5, uint 0, uint 2, uint 7>
%E = extractelement %T %D, uint 1
ret float %E
}