testcase for PR159
[oota-llvm.git] / test / ExecutionEngine / test-phi.ll
index 11aacc10fbf21d76baa9f5aae1b4eb9a10df7214..9e214382e0335e7c138b8143d701756bb981ade9 100644 (file)
@@ -1,9 +1,28 @@
 ; test phi node
-void %main() {
+
+%Y = global int 6
+
+void %blah(int *%X) {
+       br label %T
+T:
+       phi int* [%X, %0], [%Y, %Dead]
+       ret void
+Dead:
+       br label %T
+}
+
+int %test(bool %C) {
+       br bool %C, label %T, label %T
+T:
+       %X = phi int [123, %0], [123, %0]
+       ret int %X
+}
+
+int %main() {
        br label %Test
 Test:
-       %X = phi int [7, %0], [%Y, %Dead]
-       ret void
+       %X = phi int [0, %0], [%Y, %Dead]
+       ret int %X
 Dead:
        %Y = shr int 12, ubyte 4
        br label %Test