hanchenye-llvm-project/llvm/test/Transforms/SimplifyCFG/2007-11-22-InvokeNoUnwind.ll

15 lines
288 B
LLVM
Raw Normal View History

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