new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23380 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-09-18 05:10:39 +00:00
parent c8e7756791
commit ab4ea6e980

View File

@ -172,3 +172,11 @@ sbyte %test24(sbyte %X) {
ret sbyte %Q
}
uint %test25(uint %tmp.2, uint %AA) {
%x = shr uint %AA, ubyte 17
%tmp.3 = shr uint %tmp.2, ubyte 17 ; <uint> [#uses=1]
%tmp.5 = add uint %tmp.3, %x ; <uint> [#uses=1]
%tmp.6 = shl uint %tmp.5, ubyte 17 ; <uint> [#uses=1]
ret uint %tmp.6
}