From d808e4565881de61e81412d5f451b4f61075dd77 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 28 Jun 2003 23:13:12 +0000 Subject: [PATCH] Eliminate explicit control flow in tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6961 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll | 5 +---- test/Transforms/SimplifyCFG/EqualPHIEdgeBlockMerge.ll | 5 +---- test/Transforms/SimplifyCFG/PhiBlockMerge.ll | 5 +---- test/Transforms/SimplifyCFG/PhiBlockMerge2.ll | 5 +---- test/Transforms/SimplifyCFG/basictest.ll | 5 +---- test/Transforms/SimplifyCFG/branch-fold-test.ll | 5 +---- 6 files changed, 6 insertions(+), 24 deletions(-) diff --git a/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll b/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll index aa24bfbc599..1587e7e144a 100644 --- a/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll +++ b/test/Transforms/SimplifyCFG/2002-06-24-PHINode.ll @@ -1,10 +1,7 @@ ; -simplifycfg is not folding blocks if there is a PHI node involved. This ; should be fixed eventually -; RUN: if as < %s | opt -simplifycfg | dis | grep br -; RUN: then exit 1 -; RUN: else exit 0 -; RUN: fi +; RUN: as < %s | opt -simplifycfg | dis | not grep br int %main(int %argc) { br label %InlinedFunctionReturnNode diff --git a/test/Transforms/SimplifyCFG/EqualPHIEdgeBlockMerge.ll b/test/Transforms/SimplifyCFG/EqualPHIEdgeBlockMerge.ll index b090e781985..1a31ee4b25a 100644 --- a/test/Transforms/SimplifyCFG/EqualPHIEdgeBlockMerge.ll +++ b/test/Transforms/SimplifyCFG/EqualPHIEdgeBlockMerge.ll @@ -1,9 +1,6 @@ ; Test merging of blocks with phi nodes. ; -; RUN: if as < %s | opt -simplifycfg | dis | grep 'N:' -; RUN: then exit 1 -; RUN: else exit 0 -; RUN: fi +; RUN: as < %s | opt -simplifycfg | dis | not grep 'N:' ; int %test(bool %a) { diff --git a/test/Transforms/SimplifyCFG/PhiBlockMerge.ll b/test/Transforms/SimplifyCFG/PhiBlockMerge.ll index d1df2a17b7d..21e4f59b270 100644 --- a/test/Transforms/SimplifyCFG/PhiBlockMerge.ll +++ b/test/Transforms/SimplifyCFG/PhiBlockMerge.ll @@ -1,9 +1,6 @@ ; Test merging of blocks that only have PHI nodes in them ; -; RUN: if as < %s | opt -simplifycfg | dis | grep 'N:' -; RUN: then exit 1 -; RUN: else exit 0 -; RUN: fi +; RUN: as < %s | opt -simplifycfg | dis | not grep 'N:' ; int %test(bool %a, bool %b) { diff --git a/test/Transforms/SimplifyCFG/PhiBlockMerge2.ll b/test/Transforms/SimplifyCFG/PhiBlockMerge2.ll index aecb6b9244f..94cd5934eb4 100644 --- a/test/Transforms/SimplifyCFG/PhiBlockMerge2.ll +++ b/test/Transforms/SimplifyCFG/PhiBlockMerge2.ll @@ -2,10 +2,7 @@ ; where the mergedinto block doesn't have any PHI nodes, and is in fact ; dominated by the block-to-be-eliminated ; -; RUN: if as < %s | opt -simplifycfg | dis | grep 'N:' -; RUN: then exit 1 -; RUN: else exit 0 -; RUN: fi +; RUN: as < %s | opt -simplifycfg | dis | not grep 'N:' ; int %test(bool %a, bool %b) { diff --git a/test/Transforms/SimplifyCFG/basictest.ll b/test/Transforms/SimplifyCFG/basictest.ll index c86d9398f5a..c16b1cd6b07 100644 --- a/test/Transforms/SimplifyCFG/basictest.ll +++ b/test/Transforms/SimplifyCFG/basictest.ll @@ -1,9 +1,6 @@ ; Test CFG simplify removal of branch instructions... ; -; RUN: if as < %s | opt -simplifycfg | dis | grep br -; RUN: then exit 1 -; RUN: else exit 0 -; RUN: fi +; RUN: as < %s | opt -simplifycfg | dis | not grep br void "test1"() { diff --git a/test/Transforms/SimplifyCFG/branch-fold-test.ll b/test/Transforms/SimplifyCFG/branch-fold-test.ll index 207eaa9a2eb..3f1a8e40003 100644 --- a/test/Transforms/SimplifyCFG/branch-fold-test.ll +++ b/test/Transforms/SimplifyCFG/branch-fold-test.ll @@ -1,10 +1,7 @@ ; This test ensures that the simplifycfg pass continues to constant fold ; terminator instructions. -; RUN: if as < %s | opt -simplifycfg | grep br -; RUN: then exit 1 -; RUN: else exit 0 -; RUN: fi +; RUN: as < %s | opt -simplifycfg | not grep br int %test(int %A, int %B) { J: -- 2.34.1