diff options
-rw-r--r-- | test/Feature/testconstants.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Feature/testconstants.ll b/test/Feature/testconstants.ll index 3df2a29..7d9e119 100644 --- a/test/Feature/testconstants.ll +++ b/test/Feature/testconstants.ll @@ -24,3 +24,10 @@ begin ret sbyte* null ; Test null end +uint %negativeUnsigned() { + ret uint -1 +} + +int %largeSigned() { + ret int 3900000000 +} |