Return success on success

llvm-svn: 5006
diff --git a/llvm/test/Regression/Jello/test-phi.ll b/llvm/test/Regression/Jello/test-phi.ll
index 785a41b..14b1b60 100644
--- a/llvm/test/Regression/Jello/test-phi.ll
+++ b/llvm/test/Regression/Jello/test-phi.ll
@@ -11,11 +11,11 @@
 	br label %T
 }
 
-void %main() {
+int %main() {
 	br label %Test
 Test:
 	%X = phi int [7, %0], [%Y, %Dead]
-	ret void
+	ret int 0
 Dead:
 	%Y = shr int 12, ubyte 4
 	br label %Test