Introduce llvm::sys::getProcessTriple() function.
[oota-llvm.git] / test / ExecutionEngine / MCJIT / test-return.ll
1 ; RUN: %lli_mcjit %s > /dev/null
2
3 define i32 @main() nounwind uwtable {
4 entry:
5   %retval = alloca i32, align 4
6   store i32 0, i32* %retval
7   ret i32 0
8 }