aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2002-12-04 23:58:41 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2002-12-04 23:58:41 +0000
commite78dba871bf7abb2c1ba75fae6b76d7b998d2be4 (patch)
tree0073e6a36ee5c7e39cdd5892057cf3b9b529387a /test/ExecutionEngine
parentdd46e2a81d32778d1ad1421185261aafd7cffae4 (diff)
downloadexternal_llvm-e78dba871bf7abb2c1ba75fae6b76d7b998d2be4.zip
external_llvm-e78dba871bf7abb2c1ba75fae6b76d7b998d2be4.tar.gz
external_llvm-e78dba871bf7abb2c1ba75fae6b76d7b998d2be4.tar.bz2
Return 0 to make it into a fully-functioning "Hello, World!" test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/simplesttest.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/simplesttest.ll b/test/ExecutionEngine/simplesttest.ll
index f763e2f..48d7688 100644
--- a/test/ExecutionEngine/simplesttest.ll
+++ b/test/ExecutionEngine/simplesttest.ll
@@ -12,8 +12,8 @@ void %bar() {
ret void
}
-void %main() {
+int %main() {
call void %bar()
- ret void
+ ret int 0
}