commit | d808e4565881de61e81412d5f451b4f61075dd77 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Jun 28 23:13:12 2003 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Jun 28 23:13:12 2003 +0000 |
tree | 4bf420bcd11621d7083939a227e729d591ab186b | |
parent | ecf2628cc65b9bf8389504712686226542914a06 [diff] [blame] |
Eliminate explicit control flow in tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6961 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Transforms/SimplifyCFG/PhiBlockMerge.ll b/test/Transforms/SimplifyCFG/PhiBlockMerge.ll index d1df2a1..21e4f59 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) {