aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/branch.ll
blob: df28f42d0108ec11897c4c13385bac08e75b6da7 (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
49
50
51
52
53
54
55
56
57
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm > %t 
; RUN: grep bne %t
; RUN: grep bge %t
; RUN: grep bhs %t
; RUN: grep blo %t

void %f1(int %a, int %b, int* %v) {
entry:
	%tmp = seteq int %a, %b		; <bool> [#uses=1]
	br bool %tmp, label %cond_true, label %return

cond_true:		; preds = %entry
	store int 0, int* %v
	ret void

return:		; preds = %entry
	ret void
}

void %f2(int %a, int %b, int* %v) {
entry:
	%tmp = setlt int %a, %b		; <bool> [#uses=1]
	br bool %tmp, label %cond_true, label %return

cond_true:		; preds = %entry
	store int 0, int* %v
	ret void

return:		; preds = %entry
	ret void
}

void %f3(uint %a, uint %b, int* %v) {
entry:
	%tmp = setlt uint %a, %b		; <bool> [#uses=1]
	br bool %tmp, label %cond_true, label %return

cond_true:		; preds = %entry
	store int 0, int* %v
	ret void

return:		; preds = %entry
	ret void
}

void %f4(uint %a, uint %b, int* %v) {
entry:
	%tmp = setlt uint %a, %b		; <bool> [#uses=1]
	br bool %tmp, label %return, label %cond_true

cond_true:		; preds = %entry
	store int 0, int* %v
	ret void

return:		; preds = %entry
	ret void
}