Remove "XFAIL: arm" from test/ExecutionEngine/test-return.ll
[oota-llvm.git] / test / ExecutionEngine / test-call-no-external-funcs.ll
1 ; RUN: %lli %s > /dev/null
2 ; XFAIL: arm
3 ; XFAIL: mcjit
4
5 define i32 @_Z14func_exit_codev() nounwind uwtable {
6 entry:
7   ret i32 0
8 }
9
10 define i32 @main() nounwind uwtable {
11 entry:
12   %retval = alloca i32, align 4
13   store i32 0, i32* %retval
14   %call = call i32 @_Z14func_exit_codev()
15   ret i32 %call
16 }