summaryrefslogtreecommitdiff
path: root/test/Transforms/PruneEH/recursivetest.llx
blob: 0ef33b54eb28e1cf117a5329f04a909e80776a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llvm-upgrade < %s | llvm-as | opt -prune-eh | llvm-dis | not grep invoke

implementation

internal int %foo() {
	invoke int %foo() to label %Normal except label %Except
Normal:
	ret int 12
Except:
	ret int 123
}

int %caller() {
	invoke int %foo() to label %Normal except label %Except
Normal:
	ret int 0
Except:
	ret int 1
}