new testcase

llvm-svn: 21774
This commit is contained in:
Chris Lattner 2005-05-08 17:31:24 +00:00
parent b127267a5a
commit 5140c15f08
1 changed files with 8 additions and 0 deletions

View File

@ -164,3 +164,11 @@ sbyte %test23(int %A) {
%D = cast int %C to sbyte
ret sbyte %D
}
sbyte %test24(sbyte %X) {
%Y = and sbyte %X, -5 ; ~4
%Z = shl sbyte %Y, ubyte 5
%Q = shr sbyte %Z, ubyte 5
ret sbyte %Q
}