Add another testcase that may eventually be handled...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5705 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-03-05 22:50:55 +00:00
parent decd0812ec
commit 8e019aa9c9

View File

@ -31,3 +31,10 @@ bool %test3(int %A, int %B) {
ret bool %cst222
}
int %test4(int %A) {
%B = cast int %A to uint
%C = shl uint %B, ubyte 1
%D = cast uint %C to int
ret int %D
}