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

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 2 14:55:01 PST 2002


Changes in directory llvm/test/Regression/Jello:

test-arith.ll updated: 1.2 -> 1.3

---
Log message:

Enable div and mod tests


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/test-arith.ll
diff -u llvm/test/Regression/Jello/test-arith.ll:1.2 llvm/test/Regression/Jello/test-arith.ll:1.3
--- llvm/test/Regression/Jello/test-arith.ll:1.2	Sat Nov  2 14:28:47 2002
+++ llvm/test/Regression/Jello/test-arith.ll	Sat Nov  2 14:54:11 2002
@@ -3,26 +3,26 @@
 	%A = add sbyte 0, 12
 	%B = sub sbyte %A, %A
 	%C = mul sbyte %B, %B
-	;%D = div sbyte %C, %C
-	;%E = rem sbyte %D, %D
-	;%F = div ubyte 5, 6
-	;%G = rem ubyte 6, 5
+	%D = div sbyte %C, %C
+	%E = rem sbyte %D, %D
+	%F = div ubyte 5, 6
+	%G = rem ubyte 6, 5
 
 	%A = add short 0, 12
 	%B = sub short %A, %A
 	%C = mul short %B, %B
-	;%D = div short %C, %C
-	;%E = rem short %D, %D
-	;%F = div ushort 5, 6
-	;%G = rem uint 6, 5
+	%D = div short %C, %C
+	%E = rem short %D, %D
+	%F = div ushort 5, 6
+	%G = rem uint 6, 5
 
 	%A = add int 0, 12
 	%B = sub int %A, %A
 	%C = mul int %B, %B
-	;%D = div int %C, %C
-	;%E = rem int %D, %D
-	;%F = div uint 5, 6
-	;%G = rem uint 6, 5
+	%D = div int %C, %C
+	%E = rem int %D, %D
+	%F = div uint 5, 6
+	%G = rem uint 6, 5
 
 	ret void
 }





More information about the llvm-commits mailing list