new testcase which crashes the inliner, thanks Bugpoint!
[oota-llvm.git] / test / ExecutionEngine / 2003-06-05-PHIBug.ll
1 ; Testcase distilled from 256.bzip2.
2
3 target endian = little
4 target pointersize = 32
5
6 int %main() {
7 entry:
8         %X = add int 1, -1
9         br label %Next
10
11 Next:
12         %A = phi int [ %X, %entry ]
13         %B = phi int [ %X, %entry ]
14         %C = phi int [ %X, %entry ]
15         ret int %C
16 }