New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16548 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-09-28 18:21:01 +00:00
parent 59359f1e84
commit 46c4dcde44

View File

@ -24,3 +24,9 @@ int %test4(int %A) {
%B = div int %A, -1 ; 0-A
ret int %B
}
uint %test5(uint %A) {
%B = div uint %A, 4294967280
%C = div uint %B, 4294967292
ret uint %C
}