From: Chris Lattner Date: Fri, 13 Dec 2002 06:57:24 +0000 (+0000) Subject: return 0 on success X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4373140d8a194b2e0797097667fc3b88108b1544;p=oota-llvm.git return 0 on success git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4996 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/ExecutionEngine/hello.ll b/test/ExecutionEngine/hello.ll index b85e3221c0e..1f8c77be207 100644 --- a/test/ExecutionEngine/hello.ll +++ b/test/ExecutionEngine/hello.ll @@ -4,8 +4,8 @@ implementation declare int %puts(sbyte*) -void %main() { +int %main() { %reg210 = call int %puts( sbyte* getelementptr ([12 x sbyte]* %.LC0, long 0, long 0) ) - ret void + ret int 0 }