aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/Inline/invoke_test-3.ll
blob: 7ed3ed31dee0d7a9acf9108a5289a7ed628763a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
; Test that any rethrown exceptions in an inlined function are automatically
; turned into branches to the invoke destination.

; RUN: as < %s | opt -inline | dis | not grep 'call void %llvm.exc.rethrow'

declare void %might_throw()
declare void %llvm.exc.rethrow()

implementation

internal int %callee() {
	invoke void %might_throw() to label %cont except label %exc
cont:
	ret int 0
exc:	; This just rethrows the exception!
	call void %llvm.exc.rethrow()
	ret int 123  ; DEAD!
}

; caller returns true if might_throw throws an exception... which gets 
; propagated by callee.
int %caller() {
	%X = invoke int %callee() to label %cont 
		except label %Handler
cont:
	ret int %X
Handler:
	; This consumes an exception thrown by might_throw
	ret int 1
}