aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/test-phi.ll
blob: 11aacc10fbf21d76baa9f5aae1b4eb9a10df7214 (plain)
1
2
3
4
5
6
7
8
9
10
; test phi node
void %main() {
	br label %Test
Test:
	%X = phi int [7, %0], [%Y, %Dead]
	ret void
Dead:
	%Y = shr int 12, ubyte 4
	br label %Test
}