llvm-6502/test/Transforms/SimplifyCFG/2007-11-22-InvokeNoUnwind.ll
2013-04-09 05:18:53 +00:00

17 lines
279 B
LLVM

; RUN: opt < %s -simplifycfg -S | FileCheck %s
; CHECK-NOT: invoke
declare i32 @func(i8*) nounwind
define i32 @test() {
invoke i32 @func( i8* null )
to label %Cont unwind label %Other ; <i32>:1 [#uses=0]
Cont: ; preds = %0
ret i32 0
Other: ; preds = %0
ret i32 1
}