Add some tests for negative constants to unsigned and large positive

constants to signed.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-12-20 17:27:58 +00:00
parent 9ffad0a43f
commit 505811e9dd

View File

@ -24,3 +24,10 @@ begin
ret sbyte* null ; Test null
end
uint %negativeUnsigned() {
ret uint -1
}
int %largeSigned() {
ret int 3900000000
}