Changes in directory llvm/test/Feature:
testconstants.ll updated: 1.7 -> 1.8 --- Log message: Add some tests for negative constants to unsigned and large positive constants to signed. --- Diffs of the changes: (+7 -0) testconstants.ll | 7 +++++++ 1 files changed, 7 insertions(+) Index: llvm/test/Feature/testconstants.ll diff -u llvm/test/Feature/testconstants.ll:1.7 llvm/test/Feature/testconstants.ll:1.8 --- llvm/test/Feature/testconstants.ll:1.7 Fri Dec 1 22:23:07 2006 +++ llvm/test/Feature/testconstants.ll Wed Dec 20 11:27:58 2006 @@ -24,3 +24,10 @@ ret sbyte* null ; Test null end +uint %negativeUnsigned() { + ret uint -1 +} + +int %largeSigned() { + ret int 3900000000 +} _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits