aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll
blob: d59a63518a56f3b8433b33bfd6a16e7ff8ad250e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
target endian = little
target pointersize = 32

implementation

int %main() {
entry:
	br label %endif
then:
	br label %endif
endif:
	%x = phi uint [ 4, %entry ], [ 27, %then ]
	%result = phi int [ 32, %then ], [ 0, %entry ]
	ret int 0
}