blob: 15cd7730449ee3bd6be7a7f5d93c261cf0d8b3ae [file] [log] [blame]
Chris Lattnercc88b0a2003-08-05 16:11:36 +00001; Do not remove the invoke!
2;
Dan Gohman18800922009-09-11 18:01:28 +00003; RUN: opt < %s -simplifycfg -S | grep invoke
Chris Lattnercc88b0a2003-08-05 16:11:36 +00004
Tanya Lattner5f4b3552008-03-10 07:21:50 +00005define i32 @test() {
6 invoke i32 @test( )
7 to label %Ret unwind label %Ret ; <i32>:1 [#uses=0]
8Ret: ; preds = %0, %0
9 %A = add i32 0, 1 ; <i32> [#uses=1]
10 ret i32 %A
Chris Lattnercc88b0a2003-08-05 16:11:36 +000011}
Tanya Lattner5f4b3552008-03-10 07:21:50 +000012