Merge branch 'master' into msp430
[llvm/msp430.git] / test / Transforms / Inline / 2003-10-26-InlineInvokeExceptionDestPhi.ll
blob675454e13482d36bc66fef45b02949daa0f2753a
1 ; The inliner is breaking inlining invoke instructions where there is a PHI 
2 ; node in the exception destination, and the inlined function contains an 
3 ; unwind instruction.
5 ; RUN: llvm-as < %s | opt -inline -disable-output
7 define linkonce void @foo() {
8         unwind
11 define i32 @test() {
12 BB1:
13         invoke void @foo( )
14                         to label %Cont unwind label %Cont
16 Cont:           ; preds = %BB1, %BB1
17         %A = phi i32 [ 0, %BB1 ], [ 0, %BB1 ]           ; <i32> [#uses=1]
18         ret i32 %A