diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-08-22 00:51:19 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-08-22 00:51:19 +0000 |
commit | 3c3ee1f8acb288e38790eca3825f101fd70c2a6b (patch) | |
tree | da1002ca51356c01e4a01fdb758ddf64a32d33d9 /test/Analysis/PostDominators | |
parent | e2a48fbd9d1ec8bebb5b10cf8770d716f8bdda28 (diff) | |
download | external_llvm-3c3ee1f8acb288e38790eca3825f101fd70c2a6b.zip external_llvm-3c3ee1f8acb288e38790eca3825f101fd70c2a6b.tar.gz external_llvm-3c3ee1f8acb288e38790eca3825f101fd70c2a6b.tar.bz2 |
FileCheck-ize tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/PostDominators')
-rw-r--r-- | test/Analysis/PostDominators/pr1098.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Analysis/PostDominators/pr1098.ll b/test/Analysis/PostDominators/pr1098.ll index afb4776..2eed213 100644 --- a/test/Analysis/PostDominators/pr1098.ll +++ b/test/Analysis/PostDominators/pr1098.ll @@ -1,7 +1,8 @@ -; RUN: opt < %s -postdomtree -analyze | grep entry +; RUN: opt < %s -postdomtree -analyze | FileCheck %s ; PR932 define void @foo(i1 %x) { +; CHECK: entry entry: br i1 %x, label %bb1, label %bb0 bb0: ; preds = %entry, bb0 |