blob: 9f01d85c2a3c760fb7cb3debbb5a06d7765eade0 [file] [log] [blame]
Dan Gohman5bb7c7c2009-09-08 22:34:10 +00001; RUN: opt %s -simplifycfg -S | not grep invoke
Duncan Sands21010b42007-11-22 22:24:59 +00002
3declare i32 @func(i8*) nounwind
4
5define i32 @test() {
Duncan Sands637ec552007-11-28 17:07:01 +00006 invoke i32 @func( i8* null )
Duncan Sands21010b42007-11-22 22:24:59 +00007 to label %Cont unwind label %Other ; <i32>:1 [#uses=0]
8
9Cont: ; preds = %0
10 ret i32 0
11
12Other: ; preds = %0
13 ret i32 1
14}