From 505811e9dda98d7522f524c8647ca73cc8402ba3 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 20 Dec 2006 17:27:58 +0000 Subject: [PATCH] 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 --- test/Feature/testconstants.ll | 7 +++++++ 1 file changed, 7 insertions(+) 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 +} -- 2.34.1