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

Michael Brukman brukman at cs.uiuc.edu
Fri Jun 6 02:59:00 PDT 2003


Changes in directory llvm/test/Regression/Jello:

test-branch.ll updated: 1.4 -> 1.5

---
Log message:

Return 'int 0' instead of void so that the test can be considered to pass.


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/test-branch.ll
diff -u llvm/test/Regression/Jello/test-branch.ll:1.4 llvm/test/Regression/Jello/test-branch.ll:1.5
--- llvm/test/Regression/Jello/test-branch.ll:1.4	Thu Dec 12 23:28:50 2002
+++ llvm/test/Regression/Jello/test-branch.ll	Fri Jun  6 02:58:29 2003
@@ -1,9 +1,9 @@
 ; test unconditional branch
-void %main() {
+int %main() {
 	br label %Test
 Test:
 	%X = seteq int 0, 4
 	br bool %X, label %Test, label %Label
 Label:
-	ret void
+	ret int 0
 }





More information about the llvm-commits mailing list