From 4373140d8a194b2e0797097667fc3b88108b1544 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 13 Dec 2002 06:57:24 +0000 Subject: return 0 on success git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4996 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/hello.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/ExecutionEngine/hello.ll b/test/ExecutionEngine/hello.ll index b85e322..1f8c77b 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 } -- cgit v1.1