New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28125 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-05-05 06:38:40 +00:00
parent 0d8dae749c
commit a0771b8020

View File

@ -177,3 +177,11 @@ float* %test28([4 x float]* %A) {
ret float* %c
}
uint %test29(uint %c1, uint %c2) {
%tmp1 = cast uint %c1 to ubyte
%tmp4.mask = cast uint %c2 to ubyte
%tmp = or ubyte %tmp4.mask, %tmp1
%tmp10 = cast ubyte %tmp to uint
ret uint %tmp10
}