Shuffle testcases around
[oota-llvm.git] / test / ExecutionEngine / test-phi.ll
1 ; test phi node
2 void %main() {
3         br label %Test
4 Test:
5         %X = phi int [7, %0], [%Y, %Dead]
6         ret void
7 Dead:
8         %Y = shr int 12, ubyte 4
9         br label %Test
10 }