aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/test-phi.ll
blob: 14b1b60ce31ce6fe5f00ff3e47fa90d07d4d8258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; test phi node

%Y = global int 6

void %blah(int *%X) {
	br label %T
T:
	phi int* [%X, %0], [%Y, %Dead]
	ret void
Dead:
	br label %T
}

int %main() {
	br label %Test
Test:
	%X = phi int [7, %0], [%Y, %Dead]
	ret int 0
Dead:
	%Y = shr int 12, ubyte 4
	br label %Test
}