From: Reid Spencer Date: Wed, 20 Dec 2006 17:27:58 +0000 (+0000) Subject: Add some tests for negative constants to unsigned and large positive X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=505811e9dda98d7522f524c8647ca73cc8402ba3;p=oota-llvm.git 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 --- diff --git a/test/Feature/testconstants.ll b/test/Feature/testconstants.ll index 3df2a2971e8..7d9e11964e3 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 +}