1; RUN: %lli -jit-kind=orc-mcjit %s > /dev/null
2
3; Testcase distilled from 256.bzip2.
4
5define i32 @main() {
6entry:
7	%X = add i32 1, -1		; <i32> [#uses=3]
8	br label %Next
9Next:		; preds = %entry
10	%A = phi i32 [ %X, %entry ]		; <i32> [#uses=0]
11	%B = phi i32 [ %X, %entry ]		; <i32> [#uses=0]
12	%C = phi i32 [ %X, %entry ]		; <i32> [#uses=1]
13	ret i32 %C
14}
15
16