new testcase I forgot to check in earlier

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26565 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-03-05 23:53:04 +00:00
parent a93dfcd40a
commit 03182bfd89

View File

@ -220,3 +220,10 @@ int %test31(int %A) {
%D = sub int %C, 20
ret int %D
}
int %test32(int %A) {
%B = add int %A, 4
%C = shl int %B, ubyte 2
%D = sub int %C, 16
ret int %D
}