blob: a20c46e1ad1f922e573eb53103f263f4b04b99a3 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +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}