correct suffix matching to search for s/l/t suffixes on
[oota-llvm.git] / test / Transforms / SimplifyCFG / 2002-06-24-PHINode.ll
index 7ca058ffb8c352e8f8be3c35095d891d64dc52d2..88f32bc08279d9cc694d549680f506a97ea46c95 100644 (file)
@@ -1,17 +1,14 @@
 ; -simplifycfg is not folding blocks if there is a PHI node involved.  This 
 ; should be fixed eventually
 
-; RUN: if as < %s | opt -sccp | dis | grep br
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
-
-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
 }