1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Add some tests for negative constants to unsigned and large positive

constants to signed.

llvm-svn: 32717
This commit is contained in:
Reid Spencer 2006-12-20 17:27:58 +00:00
parent 1bb72cf36e
commit 84fdefd1db

View File

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