diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-11 06:24:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-11 06:24:37 +0000 |
commit | 2e1cdbf92dfee11fd326cede500a8a0e7e035e65 (patch) | |
tree | fbd2aa8ca3b97183c8c2508001081820425a79d5 | |
parent | 98df4f9cf2dea81af1cc2e68f23b285d22cebc6a (diff) |
convert to filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95854 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/and2.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Transforms/InstCombine/and2.ll b/test/Transforms/InstCombine/and2.ll index 0af9bfaff3..a5a6574e9f 100644 --- a/test/Transforms/InstCombine/and2.ll +++ b/test/Transforms/InstCombine/and2.ll @@ -1,5 +1,4 @@ -; RUN: opt < %s -instcombine -S | not grep and - +; RUN: opt < %s -instcombine -S | FileCheck %s ; PR1738 define i1 @test1(double %X, double %Y) { @@ -7,6 +6,5 @@ define i1 @test1(double %X, double %Y) { %tmp13 = fcmp ord double %Y, 0.000000e+00 %bothcond = and i1 %tmp13, %tmp9 ret i1 %bothcond +; CHECK: fcmp ord double %Y, %X } - - |