new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32008 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-11-29 07:03:00 +00:00
parent f4d4d9adad
commit 41e2103133

View File

@ -211,3 +211,11 @@ uint %test33(uint %c1) {
%y = bitcast float %x to uint
ret uint %y
}
ushort %test34(ushort %a) {
%c1 = zext ushort %a to int
%tmp21 = lshr int %c1, ubyte 8
%c2 = trunc int %tmp21 to ushort
ret ushort %c2
}