[llvm-commits] [llvm] r95854 - /llvm/trunk/test/Transforms/InstCombine/and2.ll
Chris Lattner
sabre at nondot.org
Wed Feb 10 22:24:37 PST 2010
Author: lattner
Date: Thu Feb 11 00:24:37 2010
New Revision: 95854
URL: http://llvm.org/viewvc/llvm-project?rev=95854&view=rev
Log:
convert to filecheck.
Modified:
llvm/trunk/test/Transforms/InstCombine/and2.ll
Modified: llvm/trunk/test/Transforms/InstCombine/and2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/and2.ll?rev=95854&r1=95853&r2=95854&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/and2.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/and2.ll Thu Feb 11 00:24:37 2010
@@ -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 @@
%tmp13 = fcmp ord double %Y, 0.000000e+00
%bothcond = and i1 %tmp13, %tmp9
ret i1 %bothcond
+; CHECK: fcmp ord double %Y, %X
}
-
-
More information about the llvm-commits
mailing list