In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / Other / 2009-03-31-CallGraph.ll
blob43578be2d92cb4be171b62ac13ae11e5b507a560
1 ; RUN: llvm-as < %s | opt -inline -prune-eh -disable-output
2 define void @f2() {
3     invoke void @f6()
4         to label %ok1 unwind label %lpad1
6 ok1:
7     ret void
9 lpad1:
10     invoke void @f4()
11         to label %ok2 unwind label %lpad2
13 ok2:
14     call void @f8()
15     unreachable
17 lpad2:
18     unreachable
21 declare void @f3()
23 define void @f4() {
24     call void @f3()
25     ret void
28 declare void @f6() nounwind
30 declare void @f8()