C and Ocaml bindings for ExecutionEngine (i.e., the JIT compiler).
[oota-llvm.git] / test / Verifier / invoke-1.ll
1 ; RUN: llvm-upgrade < %s | not llvm-as |& grep {not verify as correct}
2 ; PR1042
3
4 int %foo() {
5    %A = invoke int %foo( )
6         to label %L unwind label %L             ; <int> [#uses=1]
7
8 L: ; preds = %0, %0
9    ret int %A
10 }