[llvm-commits] CVS: llvm/test/Regression/Jello/test-setcond-int.ll
Misha Brukman
brukman at cs.uiuc.edu
Thu Dec 12 23:44:03 PST 2002
Changes in directory llvm/test/Regression/Jello:
test-setcond-int.ll updated: 1.2 -> 1.3
---
Log message:
Making main() return 0 to exit without error when no error actually occurs.
---
Diffs of the changes:
Index: llvm/test/Regression/Jello/test-setcond-int.ll
diff -u llvm/test/Regression/Jello/test-setcond-int.ll:1.2 llvm/test/Regression/Jello/test-setcond-int.ll:1.3
--- llvm/test/Regression/Jello/test-setcond-int.ll:1.2 Thu Nov 7 12:09:02 2002
+++ llvm/test/Regression/Jello/test-setcond-int.ll Thu Dec 12 23:43:36 2002
@@ -1,5 +1,5 @@
-void %main() {
+int %main() {
%int1 = add int 0, 0
%int2 = add int 0, 0
;%long1 = add long 0, 0
@@ -64,5 +64,5 @@
;%test46 = setle long %long1, %long2
;%test47 = setlt long %long1, %long2
;%test48 = setne long %long1, %long2
- ret void
+ ret int 0
}
More information about the llvm-commits
mailing list