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

; RUN: opt < %s -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S | FileCheck %s

; CHECK-NOT: invoke

declare i32 @func(ptr) nounwind

define i32 @test() personality ptr @__gxx_personality_v0 {
	invoke i32 @func( ptr null )
			to label %Cont unwind label %Other		; <i32>:1 [#uses=0]

Cont:		; preds = %0
	ret i32 0

Other:		; preds = %0
	landingpad { ptr, i32 }
		catch ptr null
	ret i32 1
}

declare i32 @__gxx_personality_v0(...)