This way it's easier to test: if the call to external exit(0) succeeded,
[oota-llvm.git] / test / ExecutionEngine / test-call.ll
1
2 declare void %exit(int)
3
4 int %main() {
5         call void %exit(int 0)
6         ret int 1
7 }