[llvm-commits] CVS: llvm/test/Regression/Jello/test-arith.ll

Chris Lattner lattner at cs.uiuc.edu
Sun Jan 12 18:58:04 PST 2003


Changes in directory llvm/test/Regression/Jello:

test-arith.ll updated: 1.6 -> 1.7

---
Log message:

Test long support


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/test-arith.ll
diff -u llvm/test/Regression/Jello/test-arith.ll:1.6 llvm/test/Regression/Jello/test-arith.ll:1.7
--- llvm/test/Regression/Jello/test-arith.ll:1.6	Thu Dec 12 23:51:32 2002
+++ llvm/test/Regression/Jello/test-arith.ll	Sun Jan 12 18:56:27 2003
@@ -1,4 +1,3 @@
-
 int %main() {
 	%A = add sbyte 0, 12
 	%B = sub sbyte %A, 1
@@ -23,6 +22,14 @@
 	%E = rem int %D, %D
 	%F = div uint 5, 6
 	%G = rem uint 6, 5
+
+	%A = add long 0, 12
+	%B = sub long %A, 1
+	%C = mul long %B, %B
+	%D = div long %C, %C
+	%E = rem long %D, %D
+	%F = div ulong 5, 6
+	%G = rem ulong 6, 5
 
 	ret int 0
 }





More information about the llvm-commits mailing list