Additional ExecutionEngine tests, as part of bringing up the MCJIT on ELF
[oota-llvm.git] / test / ExecutionEngine / test-return.ll
1 ; RUN: %lli %s > /dev/null
2 ; XFAIL: arm
3
4 define i32 @main() nounwind uwtable {
5 entry:
6   %retval = alloca i32, align 4
7   store i32 0, i32* %retval
8   ret i32 0
9 }