new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32010 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-11-29 07:17:32 +00:00
parent 6aa5eb19d5
commit 6478b2fcd1

View File

@ -219,3 +219,10 @@ ushort %test34(ushort %a) {
ret ushort %c2
}
ushort %test35(ushort %a) {
%c1 = bitcast ushort %a to short
%tmp2 = lshr short %c1, ubyte 8
%c2 = bitcast short %tmp2 to ushort
ret ushort %c2
}