1; This testcase was reduced from Shootout-C++/reversefile.cpp by bugpoint 2 3; RUN: opt < %s -lowerinvoke -disable-output 4 5declare void @baz() 6 7declare void @bar() 8 9define void @foo() { 10then: 11 invoke void @baz( ) 12 to label %invoke_cont.0 unwind label %try_catch 13invoke_cont.0: ; preds = %then 14 invoke void @bar( ) 15 to label %try_exit unwind label %try_catch 16try_catch: ; preds = %invoke_cont.0, %then 17 %__tmp.0 = phi i32* [ null, %invoke_cont.0 ], [ null, %then ] ; <i32*> [#uses=0] 18 ret void 19try_exit: ; preds = %invoke_cont.0 20 ret void 21} 22 23