aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SimplifyCFG/2007-11-22-InvokeNoUnwind.ll
blob: 76f41e8fc2189bed49186dee3b74e9231d6a333b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; 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
	landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
		catch i8* null
	ret i32 1
}

declare i32 @__gxx_personality_v0(...)