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

Misha Brukman brukman at cs.uiuc.edu
Wed Dec 4 17:59:04 PST 2002


Changes in directory llvm/test/Regression/Jello:

simplesttest.ll updated: 1.2 -> 1.3

---
Log message:

Return 0 to make it into a fully-functioning "Hello, World!" test case.


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/simplesttest.ll
diff -u llvm/test/Regression/Jello/simplesttest.ll:1.2 llvm/test/Regression/Jello/simplesttest.ll:1.3
--- llvm/test/Regression/Jello/simplesttest.ll:1.2	Wed Dec  4 17:51:44 2002
+++ llvm/test/Regression/Jello/simplesttest.ll	Wed Dec  4 17:58:41 2002
@@ -12,8 +12,8 @@
   ret void 
 }
 
-void %main() {
+int %main() {
         call void %bar()
-        ret void
+        ret int 0
 }
 





More information about the llvm-commits mailing list