correct suffix matching to search for s/l/t suffixes on
[oota-llvm.git] / test / Transforms / SimplifyCFG / 2002-06-24-PHINode.ll
index 4c0cbbc9807b422974e834822d7d20fe2fd0f715..88f32bc08279d9cc694d549680f506a97ea46c95 100644 (file)
@@ -1,14 +1,14 @@
 ; -simplifycfg is not folding blocks if there is a PHI node involved.  This 
 ; should be fixed eventually
 
-; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep br
-
-int %main(int %argc) {
-        br label %InlinedFunctionReturnNode
-
-InlinedFunctionReturnNode:                                      ;[#uses=1]
-        %X = phi int [ 7, %0 ]          ; <int> [#uses=1]
-        %Y = add int %X, %argc          ; <int> [#uses=1]
-        ret int %Y
+; RUN: opt < %s -simplifycfg -S | not grep br
+
+define i32 @main(i32 %argc) {
+; <label>:0
+       br label %InlinedFunctionReturnNode
+InlinedFunctionReturnNode:             ; preds = %0
+       %X = phi i32 [ 7, %0 ]          ; <i32> [#uses=1]
+       %Y = add i32 %X, %argc          ; <i32> [#uses=1]
+       ret i32 %Y
 }