[llvm-commits] CVS: llvm/test/Feature/testconstants.ll

Reid Spencer reid at x10sys.com
Wed Dec 20 09:28:13 PST 2006



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
+}






More information about the llvm-commits mailing list