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