New testcase

llvm-svn: 28125
This commit is contained in:
Chris Lattner 2006-05-05 06:38:40 +00:00
parent 25a5283a86
commit c9043ef728
1 changed files with 8 additions and 0 deletions

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
}