summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Feature/testconstants.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Feature/testconstants.ll b/test/Feature/testconstants.ll
index 3df2a2971e..7d9e11964e 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
+}