Update tests that need to be run through llvm-upgrade. This is necessary
[oota-llvm.git] / test / Transforms / SCCP / sccptest.ll
index 7f39b6cc6cd1e5657a70ba06d6e32fe1eee39571..6fae7ce957d168d0d09702fc261f48da909c03b8 100644 (file)
@@ -1,13 +1,9 @@
 ; This is the test case taken from appel's book that illustrates a hard case
 ; that SCCP gets right. BB3 should be completely eliminated.
 ;
-; RUN: if as < %s | opt -sccp -constprop -dce | dis | grep BB3
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: llvm-upgrade < %s | llvm-as | opt -sccp -constprop -dce -cfgsimplify | llvm-dis | not grep BB3
 
-int "test function"(int %i0, int %j0)
-begin
+int %testfunction(int %i0, int %j0) {
 BB1:
        br label %BB2
 BB2:
@@ -35,5 +31,4 @@ BB7:
        %j4 = phi int [1, %BB5], [%k2, %BB6]
        %k4 = phi int [%k3, %BB5], [%k5, %BB6]
        br label %BB2
-end
-
+}