correct suffix matching to search for s/l/t suffixes on
[oota-llvm.git] / test / Transforms / ADCE / 2002-05-22-PHITest.ll
index e13536cac02b9dcce0d4dc27b5164687a6306a90..0095be1f5a164759e91f91c8f7d3565785c36464 100644 (file)
@@ -1,13 +1,16 @@
 ; It is illegal to remove BB1 because it will mess up the PHI node!
 ;
-; RUN: llvm-as < %s | opt -adce | llvm-dis | grep BB1
+; RUN: opt < %s -adce -S | grep BB1
 
+define i32 @test(i1 %C, i32 %A, i32 %B) {
+; <label>:0
+        br i1 %C, label %BB1, label %BB2
 
-int "test"(bool %C, int %A, int %B) {
-       br bool %C, label %BB1, label %BB2
-BB1:
-       br label %BB2
-BB2:
-       %R = phi int [%A, %0], [%B, %BB1]
-       ret int %R
+BB1:            ; preds = %0
+        br label %BB2
+
+BB2:            ; preds = %BB1, %0
+        %R = phi i32 [ %A, %0 ], [ %B, %BB1 ]           ; <i32> [#uses=1]
+        ret i32 %R
 }
+