summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/2003-01-04-PhiTest.ll
blob: 144ace7cbc9792d8e2bf658720874b5a8206da66 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | lli -force-interpreter=false

int %main() {
	br label %Loop
Loop:
	%X = phi int [0, %0], [1, %Loop]
	br bool true, label %Out, label %Loop
Out:
	ret int %X
}