1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

new testcase

llvm-svn: 27572
This commit is contained in:
Chris Lattner 2006-04-10 23:06:18 +00:00
parent 42be18f65f
commit 3410f3ce09

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
}