convert to filecheck.
[oota-llvm.git] / test / Transforms / InstCombine / and2.ll
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
2
3 ; PR1738
4 define i1 @test1(double %X, double %Y) {
5         %tmp9 = fcmp ord double %X, 0.000000e+00
6         %tmp13 = fcmp ord double %Y, 0.000000e+00
7         %bothcond = and i1 %tmp13, %tmp9
8         ret i1 %bothcond
9 ; CHECK:  fcmp ord double %Y, %X
10 }