Change these tests to feed the assembly files to opt directly, instead
[oota-llvm.git] / test / Transforms / ADCE / 2002-05-22-PHITest.ll
index e13536cac02b9dcce0d4dc27b5164687a6306a90..5a7b0bb8a512095383693459a41cb3df0e6c7418 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 | llvm-dis | 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
 }
+