aboutsummaryrefslogtreecommitdiffstats
path: root/test/irreducible.ll
blob: 4daed8a2b34f4513122018a5e7625235920008d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
implementation

;; This is an irreducible flow graph

void "irreducible"(bool %cond)
begin
	br bool %cond, label %X, label %Y

X:
	br label %Y
Y:
	br label %X
end