diff options
Diffstat (limited to 'test/ExecutionEngine/test-return.ll')
-rw-r--r-- | test/ExecutionEngine/test-return.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-return.ll b/test/ExecutionEngine/test-return.ll new file mode 100644 index 0000000000..be769750a9 --- /dev/null +++ b/test/ExecutionEngine/test-return.ll @@ -0,0 +1,9 @@ +; RUN: %lli %s > /dev/null +; XFAIL: arm + +define i32 @main() nounwind uwtable { +entry: + %retval = alloca i32, align 4 + store i32 0, i32* %retval + ret i32 0 +} |