blob: 3b80d94e1a61c706cb459d8330ab7efba41f3667 [file] [log] [blame]
Chris Lattnerc62877e2007-10-24 05:38:08 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep and
2
3
4; PR1738
5define i1 @test1(double %X, double %Y) {
6 %tmp9 = fcmp ord double %X, 0.000000e+00
7 %tmp13 = fcmp ord double %Y, 0.000000e+00
8 %bothcond = and i1 %tmp13, %tmp9
9 ret i1 %bothcond
10}
11
12