aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ExecutionEngine/hello.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/hello.ll b/test/ExecutionEngine/hello.ll
index b85e3221c0..1f8c77be20 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
}