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

Chris Lattner lattner at cs.uiuc.edu
Mon Dec 16 20:03:01 PST 2002


Changes in directory llvm/test/Regression/Jello:

test-logical.ll updated: 1.2 -> 1.3

---
Log message:

Make testcase return 0 on success


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/test-logical.ll
diff -u llvm/test/Regression/Jello/test-logical.ll:1.2 llvm/test/Regression/Jello/test-logical.ll:1.3
--- llvm/test/Regression/Jello/test-logical.ll:1.2	Wed Dec  4 11:15:07 2002
+++ llvm/test/Regression/Jello/test-logical.ll	Mon Dec 16 20:02:01 2002
@@ -1,5 +1,5 @@
 
-void %main() {
+int %main() {
 	%A = and sbyte 4, 8
 	%B = or sbyte %A, 7
 	%C = xor sbyte %B, %A
@@ -12,5 +12,5 @@
 	%B = or int %A, 7
 	%C = xor int %B, %A
 
-	ret void
+	ret int 0
 }





More information about the llvm-commits mailing list