Oops, make this test the right thing.
[oota-llvm.git] / test / Transforms / Inline / 2003-09-22-PHINodesInNormalInvokeDest.ll
1 ; RUN: llvm-as < %s | opt -inline -disable-output
2 implementation   
3
4 int %main() {
5 entry:
6         invoke void %__main( )
7                         to label %else except label %RethrowExcept
8
9 else:
10         %i.2 = phi int [ 36, %entry ], [ %i.2, %LJDecisionBB ]
11         br label %LJDecisionBB
12
13 LJDecisionBB:
14         br label %else
15
16 RethrowExcept:
17         ret int 0
18 }
19
20 void %__main() {
21         ret void
22 }
23
24