diff options
author | Andrew Trick <atrick@apple.com> | 2011-05-24 01:02:49 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-05-24 01:02:49 +0000 |
commit | 237f15d91fbe7635a7aee493a410dc455a977106 (patch) | |
tree | e5bb62703d7a696e03265eb54173640ab8f04a20 /test/Transforms/IndVarSimplify/iv-zext.ll | |
parent | 320ce564b3d132199ef742a4ff056f85294b0be0 (diff) | |
download | external_llvm-237f15d91fbe7635a7aee493a410dc455a977106.zip external_llvm-237f15d91fbe7635a7aee493a410dc455a977106.tar.gz external_llvm-237f15d91fbe7635a7aee493a410dc455a977106.tar.bz2 |
FileCheck-ize a couple of IV unit tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131946 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/IndVarSimplify/iv-zext.ll')
-rw-r--r-- | test/Transforms/IndVarSimplify/iv-zext.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/IndVarSimplify/iv-zext.ll b/test/Transforms/IndVarSimplify/iv-zext.ll index 80a77b6..00018ec 100644 --- a/test/Transforms/IndVarSimplify/iv-zext.ll +++ b/test/Transforms/IndVarSimplify/iv-zext.ll @@ -1,6 +1,6 @@ -; RUN: opt < %s -indvars -S > %t -; RUN: not grep and %t -; RUN: not grep zext %t +; RUN: opt < %s -indvars -S | FileCheck %s +; CHECK-NOT: and +; CHECK-NOT: zext target datalayout = "-p:64:64:64-n:32:64" |