aboutsummaryrefslogtreecommitdiffstats
path: root/test/Feature/unwindto.ll
blob: 78061437594f639b3a55991cc21ce6ec98a0fcf1 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
; RUN: llvm-as < %s | llvm-dis | llvm-as -disable-output
; PR1269
; END
; http://nondot.org/sabre/LLVMNotes/ExceptionHandlingChanges.txt

define i1 @test1(i8 %i, i8 %j) {
entry: unwind_to %target
	%tmp = sub i8 %i, %j		; <i8> [#uses=1]
	%b = icmp eq i8 %tmp, 0		; <i1> [#uses=1]
	ret i1 %b
target:
	ret i1 false
}

define i1 @test2(i8 %i, i8 %j) {
unwind_to %1
	%tmp = sub i8 %i, %j		; <i8> [#uses=1]
	%b = icmp eq i8 %tmp, 0		; <i1> [#uses=1]
	ret i1 %b
		; No predecessors!
	ret i1 false
}

define i1 @test3(i8 %i, i8 %j) {
unwind_to %1
	%tmp = sub i8 %i, %j		; <i8> [#uses=1]
	%b = icmp eq i8 %tmp, 0		; <i1> [#uses=1]
	ret i1 %b
unwind_to %0
	ret i1 false
}

define i1 @test4(i8 %i, i8 %j) {
	%tmp = sub i8 %i, %j		; <i8> [#uses=1]
	%b = icmp eq i8 %tmp, 0		; <i1> [#uses=1]
	br label %1
unwind_to %1
	ret i1 false
}

define void @test5() {
  unwind
}

define void @test6() {
unwind: unwind_to %unwind
  unwind
}