This test is now the same as byval-1.ll, so remove it.
[oota-llvm.git] / test / Verifier / invoke-2.ll
1 ; RUN: llvm-upgrade < %s | not llvm-as -f |& grep {not verify as correct}
2 ; PR1042
3
4 int %foo() {
5         br bool false, label %L1, label %L2
6 L1:
7         %A = invoke int %foo() to label %L unwind label %L
8
9 L2:
10         br label %L
11 L:
12         ret int %A
13 }